mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
cecfd7f8e8
Demo controls migrations to Qt6 POC for an application layout with isolated components Closes: #5902
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
|
|
}
|
|
}
|