From b7dd8984d75517654dff51465b756b06641a28ec Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 24 Aug 2024 15:33:39 +0200 Subject: [PATCH] load aceattorney if there is no theme in the ini (#1037) --- src/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.cpp b/src/options.cpp index 3af8b5d..5c53a5d 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -88,7 +88,7 @@ void Options::migrate() QString Options::theme() const { - return config.value("theme", "default").toString(); + return config.value("theme", "AceAttorney").toString(); } void Options::setTheme(QString value)