diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-26 18:09:16 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-26 18:09:16 +0000 |
| commit | 1ae4c7dd5523bac3199c639cd79b0e5ec0583e82 (patch) | |
| tree | 0a5c16fddd53408cf91fb7061c980c6700852fbd /sources/prefs/editors/VSEditor.java | |
| parent | d04ee66ac7a02e7e226478bdc0eebdd97f060e14 (diff) | |
small eye candy bugfix :)
Diffstat (limited to 'sources/prefs/editors/VSEditor.java')
| -rw-r--r-- | sources/prefs/editors/VSEditor.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/prefs/editors/VSEditor.java b/sources/prefs/editors/VSEditor.java index 4436825..39a057f 100644 --- a/sources/prefs/editors/VSEditor.java +++ b/sources/prefs/editors/VSEditor.java @@ -364,7 +364,8 @@ public abstract class VSEditor implements ActionListener { } try { - valField.setText(buffer.toString().substring(0, buffer.length()-1)+"]"); + valField.setText(vec.toString()); + //valField.setText(buffer.toString().substring(0, buffer.length()-1)+"]"); } catch (StringIndexOutOfBoundsException e) { valField.setText("[]"); } |
