diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-28 07:51:04 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-28 07:51:04 +0000 |
| commit | c83a787bdfabf4a4e8792dceb669dd2c43db3295 (patch) | |
| tree | 9fab83562cbc5a98c0677d491596f6e8180fc149 /sources/prefs/editors/VSAbstractEditor.java | |
| parent | ca255b56dd5e2109899df531707c3682e4acb3a2 (diff) | |
cosmetic fix
Diffstat (limited to 'sources/prefs/editors/VSAbstractEditor.java')
| -rw-r--r-- | sources/prefs/editors/VSAbstractEditor.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sources/prefs/editors/VSAbstractEditor.java b/sources/prefs/editors/VSAbstractEditor.java index fe69a77..06be310 100644 --- a/sources/prefs/editors/VSAbstractEditor.java +++ b/sources/prefs/editors/VSAbstractEditor.java @@ -588,7 +588,10 @@ public abstract class VSAbstractEditor implements ActionListener { if (key.startsWith("process.")) { if (!flag) { flag = true; - addSeparator(prefs.getString("lang.prefs.process")); + if (this instanceof VSProcessEditor) + addSeparator(prefs.getString("lang.prefs.process")); + else + addSeparator(prefs.getString("lang.prefs.process.defaults")); } addVariable(labels.get(fullKey), components.get(fullKey), prefsToEdit); } @@ -600,7 +603,10 @@ public abstract class VSAbstractEditor implements ActionListener { if (key.startsWith("message.")) { if (!flag) { flag = true; - addSeparator(prefs.getString("lang.prefs.message")); + if (this instanceof VSProcessEditor) + addSeparator(prefs.getString("lang.prefs.message")); + else + addSeparator(prefs.getString("lang.prefs.message.defaults")); } addVariable(labels.get(fullKey), components.get(fullKey), prefsToEdit); } |
