diff options
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)); - } + } } /** |
