moment/src/gui/Base/HShortcut.qml

14 lines
433 B
QML
Raw Normal View History

// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
2019-12-09 03:42:40 +11:00
Shortcut {
// TODO: use enabled + a Binding with restoreValue when switch to Qt 5.15
property bool active: true
property bool disableIfAnyPopupOrMenu: true
enabled: (! window.anyPopupOrMenu || ! disableIfAnyPopupOrMenu) && active
context: Qt.ApplicationShortcut
}