2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-08-23 03:03:26 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
|
2019-12-09 03:42:40 +11:00
|
|
|
Shortcut {
|
2020-04-01 23:01:13 +11:00
|
|
|
// TODO: use enabled + a Binding with restoreValue when switch to Qt 5.15
|
|
|
|
property bool active: true
|
2020-07-12 14:25:57 +10:00
|
|
|
|
|
|
|
|
|
|
|
enabled: ! window.anyPopupOrMenu && active
|
|
|
|
context: Qt.ApplicationShortcut
|
2019-08-23 03:03:26 +10:00
|
|
|
}
|