#68 fix ColorTheme.load()

This commit is contained in:
Kevin Lamonte 2019-11-25 07:16:01 -06:00
parent 9240f032a5
commit 6cd9e12929

View file

@ -234,8 +234,8 @@ public class ColorTheme {
// Invalid line.
continue;
}
String key = line.substring(0, line.indexOf(':')).trim();
String text = line.substring(line.indexOf(':') + 1);
String key = line.substring(0, line.indexOf('=')).trim();
String text = line.substring(line.indexOf('=') + 1);
setColorFromString(key, text);
}
// All done.