Commit 791314cb authored by Stefan Dunca's avatar Stefan Dunca

Fix uninitialized variable that might cause an undefined behavior

CentOS crash stacktrace:
parent 4ef7a813
......@@ -64,7 +64,7 @@ signals:
void lightColorsChanged(bool lightColors);
private:
bool _lightColors;
bool _lightColors = false;
static const int _cColorGroups = 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment