summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/config/Config.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cuchaz/enigma/config/Config.java')
-rw-r--r--src/main/java/cuchaz/enigma/config/Config.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/cuchaz/enigma/config/Config.java b/src/main/java/cuchaz/enigma/config/Config.java
index 75ced70..4441468 100644
--- a/src/main/java/cuchaz/enigma/config/Config.java
+++ b/src/main/java/cuchaz/enigma/config/Config.java
@@ -40,7 +40,8 @@ public class Config {
40 public Integer identifierColor; 40 public Integer identifierColor;
41 public Integer defaultTextColor; 41 public Integer defaultTextColor;
42 42
43 public boolean useSystemLAF = true; 43 public boolean useSystemLAF;
44 public boolean useDraculaLAF;
44 45
45 private Config() { 46 private Config() {
46 gson = new GsonBuilder() 47 gson = new GsonBuilder()
@@ -95,6 +96,7 @@ public class Config {
95 this.identifierColor = 0x000000; 96 this.identifierColor = 0x000000;
96 this.defaultTextColor = 0x000000; 97 this.defaultTextColor = 0x000000;
97 this.useSystemLAF = true; 98 this.useSystemLAF = true;
99 this.useDraculaLAF = false;
98 this.saveConfig(); 100 this.saveConfig();
99 } 101 }
100 102
@@ -113,4 +115,4 @@ public class Config {
113 public static Config getInstance() { 115 public static Config getInstance() {
114 return INSTANCE; 116 return INSTANCE;
115 } 117 }
116} \ No newline at end of file 118}