Defer game load to after UI initialization.

This removes both the double load that happens on startup and also
makes it possible to get the UI to create a new game if the existing
default.liberation is not compatible.
This commit is contained in:
Dan Albert
2020-11-07 12:35:23 -08:00
parent 3fd5e1bae7
commit 4cf406aefa
4 changed files with 46 additions and 21 deletions

View File

@@ -19,6 +19,14 @@ grey text -------------------- #B7C0C6
*/
/*
* Makes all message box text selectable.
* https://stackoverflow.com/a/32595502/632035
*/
QMessageBox {
messagebox-text-interaction-flags: 5;
}
/*QMenuBar*/
QMenuBar {
spacing: 2px; /* spacing between menu bar items */

View File

@@ -1,3 +1,11 @@
/*
windows basis styles
*/
/*
* Makes all message box text selectable.
* https://stackoverflow.com/a/32595502/632035
*/
QMessageBox {
messagebox-text-interaction-flags: 5;
}