mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
19 lines
276 B
QML
19 lines
276 B
QML
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
|
||
|
required property bool quitOnClose
|
||
|
|
||
|
signal hideApplication()
|
||
|
|
||
|
function canApplicationClose() {
|
||
|
if(root.quitOnClose) {
|
||
|
root.hideApplication()
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return true
|
||
|
}
|
||
|
}
|