File tree 3 files changed +15
-3
lines changed
Desktop/components/JASP/Widgets
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ WavyWindow
9
9
10
10
visible: aboutModel .visible
11
11
onVisibleChanged: aboutModel .visible = visible
12
- onCloseModel: { aboutModel .visible = false }
12
+ onCloseModel:
13
+ {
14
+ aboutModel .visible = false
15
+ aboutWindow .close ()
16
+ }
13
17
14
18
title: qsTr (" About JASP" )
15
19
width: 600 * jaspTheme .uiScale
Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ WavyWindow
12
12
13
13
visible: mainWindow .communityVisible
14
14
onVisibleChanged: mainWindow .communityVisible = visible
15
- onCloseModel: { mainWindow .communityVisible = false }
15
+ onCloseModel:
16
+ {
17
+ mainWindow .communityVisible = false
18
+ communityWindow .close ()
19
+ }
16
20
17
21
18
22
Original file line number Diff line number Diff line change @@ -9,9 +9,13 @@ WavyWindow
9
9
title: qsTr (" Contact JASP" )
10
10
visible: mainWindow .contactVisible
11
11
onVisibleChanged: mainWindow .contactVisible = visible
12
- onCloseModel: { mainWindow .contactVisible = false }
13
12
width: 800 * jaspTheme .uiScale
14
13
height: 600 * jaspTheme .uiScale
14
+ onCloseModel:
15
+ {
16
+ mainWindow .contactVisible = false
17
+ contactWindow .close ()
18
+ }
15
19
16
20
17
21
Text
You can’t perform that action at this time.
0 commit comments