From 2a899eb404e37cc4cd3a449539e4c077d9e6e06d Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Sun, 17 Sep 2017 17:45:16 +0200 Subject: [PATCH] Fix default configuration on first launch --- src/core/controller.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/controller.cpp b/src/core/controller.cpp index db0e8871..5b804f8a 100644 --- a/src/core/controller.cpp +++ b/src/core/controller.cpp @@ -56,6 +56,7 @@ void Controller::initDefaults() { //config.setNotInitiated(); if (!config.initiatedIsSet()) { config.setDefaults(); + config.setInitiated(); } }