Browse Source

Fixed default stylesheet as "no stylesheet"

George 4 years ago
parent
commit
82dda30e51
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/classes/astyle.h

+ 2 - 2
src/classes/astyle.h

@@ -13,9 +13,9 @@ class AStyle
 {
 public:
     enum StyleSheet{
-        Dark = 0,
+        Default = 0,  // Nothing read from config file produces .UInt() == 0
+        Dark,
         Light,
-        Default,
     };
 private:
     static QString currentStyle;