From 5ec256a73458b059c29031713caf7ed7a330dbf4 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 5 Aug 2018 17:09:29 -0700 Subject: [PATCH] Fix QML warning --- app/gui/PcView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/PcView.qml b/app/gui/PcView.qml index cb3431ed..18128b39 100644 --- a/app/gui/PcView.qml +++ b/app/gui/PcView.qml @@ -139,7 +139,7 @@ GridView { MenuItem { text: "Wake PC" onTriggered: computerModel.wakeComputer(index) - visible: !model.online && model.wakeable + visible: !model.addPc && !model.online && model.wakeable height: visible ? implicitHeight : 0 } MenuItem {