From 64a08ca2f7f574e63c39b10f8daaf69ee0dba391 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 12 Jun 2008 21:16:10 +0000 Subject: fixed some bugs. --- sources/prefs/VSPrefs.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sources/prefs/VSPrefs.java') 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)); - } + } } /** -- cgit v1.2.3