diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-12 21:16:10 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-12 21:16:10 +0000 |
| commit | 64a08ca2f7f574e63c39b10f8daaf69ee0dba391 (patch) | |
| tree | 09b6d41834e8809036e8b79a17a0271ebb6893a8 /sources/prefs/VSPrefs.java | |
| parent | 4f9a13071e3aba7291711a62358ab83374321433 (diff) | |
fixed some bugs.
Diffstat (limited to 'sources/prefs/VSPrefs.java')
| -rw-r--r-- | sources/prefs/VSPrefs.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java index 1746e32..15f8874 100644 --- a/sources/prefs/VSPrefs.java +++ b/sources/prefs/VSPrefs.java @@ -1063,11 +1063,11 @@ public class VSPrefs implements VSSerializable { */ public void copyColors(VSPrefs copyInto, String[] keys) { for (String key : keys) { - Color color = getColor(key); - float comp[] = color.getComponents(null); + Color color = getColor(key); + float comp[] = color.getComponents(null); copyInto.initColor(key, new Color(comp[0], comp[1], comp[2]), getDescription(COLOR_PREFIX + key)); - } + } } /** |
