summaryrefslogtreecommitdiff
path: root/sources/prefs/VSPrefs.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-06-12 21:16:10 +0000
committerPaul Buetow <paul@buetow.org>2008-06-12 21:16:10 +0000
commit64a08ca2f7f574e63c39b10f8daaf69ee0dba391 (patch)
tree09b6d41834e8809036e8b79a17a0271ebb6893a8 /sources/prefs/VSPrefs.java
parent4f9a13071e3aba7291711a62358ab83374321433 (diff)
fixed some bugs.
Diffstat (limited to 'sources/prefs/VSPrefs.java')
-rw-r--r--sources/prefs/VSPrefs.java6
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));
- }
+ }
}
/**