mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Popups: Don't close on click-outside
This was causing obvious confusion for users - misclicking outside of the pop-up caused a dismissal where the consequences were not at all clear. So let's drop that behaviour entirely. You exit the dialog through explicit button or key presses only.
This commit is contained in:
parent
405110c80d
commit
2d089f7d94
2 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ Popup {
|
|||
width: 550
|
||||
height: msgpopupbody.implicitHeight+150
|
||||
padding: 0
|
||||
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
||||
closePolicy: Popup.CloseOnEscape
|
||||
modal: true
|
||||
|
||||
property alias title: msgpopupheader.text
|
||||
|
|
|
@ -437,7 +437,7 @@ ApplicationWindow {
|
|||
width: parent.width-100
|
||||
height: parent.height-50
|
||||
padding: 0
|
||||
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
||||
closePolicy: Popup.CloseOnEscape
|
||||
property string hwselected: ""
|
||||
|
||||
// background of title
|
||||
|
@ -537,7 +537,7 @@ ApplicationWindow {
|
|||
width: parent.width-100
|
||||
height: parent.height-50
|
||||
padding: 0
|
||||
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
||||
closePolicy: Popup.CloseOnEscape
|
||||
property string categorySelected : ""
|
||||
|
||||
// background of title
|
||||
|
@ -934,7 +934,7 @@ ApplicationWindow {
|
|||
width: parent.width-100
|
||||
height: parent.height-50
|
||||
padding: 0
|
||||
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
||||
closePolicy: Popup.CloseOnEscape
|
||||
onClosed: imageWriter.stopDriveListPolling()
|
||||
|
||||
// background of title
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue