mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Don't hide "use customization" when editing settings
Previously, if you clicked "edit settings" in the "use customisation" msgbox then the flow got a bit confusing, when you saved settings the "use customisation" msgbox would have disappeared and you had to click "next" and go back through again. Instead, keep the "use customisation" msgbox open when editing settings so when you save settings you are back where you left it. Also: - Make "use customisation" modal so you can't click other things while it's open - Separate windows in QtQuick can't be modal so we can't stop the user interacting with the main window while "edit settings" is open. This could get confusing, so if they close the "use customisation" modal in the main window then close the settings window. - Fix a bug where saved settings weren't recognised on startup, only after being saved during the session
This commit is contained in:
parent
338b71112e
commit
4ad4276154
2 changed files with 21 additions and 9 deletions
|
@ -1208,6 +1208,9 @@ ApplicationWindow {
|
|||
onEditSettings: {
|
||||
optionspopup.openPopup()
|
||||
}
|
||||
onCloseSettings: {
|
||||
optionspopup.close()
|
||||
}
|
||||
}
|
||||
|
||||
/* Utility functions */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue