From bd9f2d20097aa1cf4d5bb24fdd5a745885a21451 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 5 Sep 2018 16:38:52 -0700 Subject: [PATCH] Remove unused Menu items in ToolButtons --- app/gui/main.qml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/app/gui/main.qml b/app/gui/main.qml index e3a1a4c9..bd227ad6 100644 --- a/app/gui/main.qml +++ b/app/gui/main.qml @@ -85,12 +85,6 @@ ApplicationWindow { } onClicked: stackView.pop() - - Menu { - id: backButton - x: parent.width - width - transformOrigin: Menu.TopRight - } } Label { @@ -128,11 +122,6 @@ ApplicationWindow { onClicked: Qt.openUrlExternally(browserUrl); - Menu { - x: parent.width - transformOrigin: Menu.TopRight - } - function updateAvailable(url) { @@ -163,11 +152,6 @@ ApplicationWindow { // TODO need to make sure browser is brought to foreground. onClicked: Qt.openUrlExternally("https://github.com/moonlight-stream/moonlight-docs/wiki/Setup-Guide"); - - Menu { - x: parent.width - transformOrigin: Menu.TopRight - } } ToolButton { @@ -189,11 +173,6 @@ ApplicationWindow { } onClicked: navigateTo("qrc:/gui/GamepadMapper.qml", "Gamepad Mapping") - - Menu { - x: parent.width - transformOrigin: Menu.TopRight - } } ToolButton { @@ -212,11 +191,6 @@ ApplicationWindow { ToolTip.timeout: 3000 ToolTip.visible: hovered ToolTip.text: "Settings" - - Menu { - x: parent.width - transformOrigin: Menu.TopRight - } } } }