// Copyright Mirage authors & contributors // SPDX-License-Identifier: LGPL-3.0-or-later import QtQuick 2.12 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 }