changeset 1730:208f06d630d4

Make deadlock text area non-editable PR 2590 Reviewed-by: aazores, neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-August/015055.html Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-August/015409.html
author Omair Majid <omajid@redhat.com>
date Tue, 11 Aug 2015 17:41:16 -0400
parents 89c2cd08a291
children a3e53d1737f9
files thread/client-swing/src/main/java/com/redhat/thermostat/thread/client/swing/impl/SwingVmDeadLockView.java
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/thread/client-swing/src/main/java/com/redhat/thermostat/thread/client/swing/impl/SwingVmDeadLockView.java	Tue Aug 18 12:14:59 2015 +0200
+++ b/thread/client-swing/src/main/java/com/redhat/thermostat/thread/client/swing/impl/SwingVmDeadLockView.java	Tue Aug 11 17:41:16 2015 -0400
@@ -110,6 +110,8 @@
 
         actualComponent.add(tabbedPane, c);
 
+        description.setEditable(false);
+
         JScrollPane scrollPane = new ThermostatScrollPane(description);
 
         graphical.setLayout(new BorderLayout());