summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/controls/ApplicationWindow.qml2
-rw-r--r--src/controls/Styles/Android/ApplicationWindowStyle.qml2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/controls/ApplicationWindow.qml b/src/controls/ApplicationWindow.qml
index 542cfe4e..4c30664d 100644
--- a/src/controls/ApplicationWindow.qml
+++ b/src/controls/ApplicationWindow.qml
@@ -231,7 +231,7 @@ Window {
}
Binding { target: menuBar; property: "__parentWindow"; value: root }
- Keys.forwardTo: menuBar ? [menuBar.__contentItem] : []
+ Keys.forwardTo: menuBar ? [menuBar.__contentItem, __panel] : []
ContentItem {
id: contentArea
diff --git a/src/controls/Styles/Android/ApplicationWindowStyle.qml b/src/controls/Styles/Android/ApplicationWindowStyle.qml
index c54735ba..550d31a3 100644
--- a/src/controls/Styles/Android/ApplicationWindowStyle.qml
+++ b/src/controls/Styles/Android/ApplicationWindowStyle.qml
@@ -96,6 +96,8 @@ QtObject {
height: visibleChildren.length > 0 ? implicitHeight : 0
}
+ Keys.onMenuPressed: proxyMenu.popup()
+
Item {
id: menuBarArea
visible: false