Ensure configurations switches start with the right style sheet

This commit is contained in:
Bill Somerville 2020-06-26 11:39:16 +01:00
parent ee157cde96
commit a02535d655
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 4 additions and 0 deletions

View File

@ -323,6 +323,7 @@ int main(int argc, char *argv[])
db.exec ("PRAGMA locking_mode=EXCLUSIVE");
int result;
auto const& original_style_sheet = a.styleSheet ();
do
{
#if WSJT_QDEBUG_TO_FILE
@ -387,6 +388,9 @@ int main(int argc, char *argv[])
splash.raise ();
QObject::connect (&a, SIGNAL (lastWindowClosed()), &a, SLOT (quit()));
result = a.exec();
// ensure config switches start with the right style sheet
a.setStyleSheet (original_style_sheet);
}
while (!result && !multi_settings.exit ());