From cd768902e95a2bffbfa161500cc208cc1bdc7de3 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Thu, 11 Feb 2016 09:25:37 +0100 Subject: [PATCH] Fix tooltips in simple mode Simple mode no longer showed tooltips since Simple Mode and Advanced Mode were put in a StackView. --- resources/qml/Sidebar.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/qml/Sidebar.qml b/resources/qml/Sidebar.qml index ac511a4df8..2778e9d779 100644 --- a/resources/qml/Sidebar.qml +++ b/resources/qml/Sidebar.qml @@ -229,7 +229,11 @@ Rectangle { id: sidebarSimple; visible: false; + + onShowTooltip: base.showTooltip(item, location, text) + onHideTooltip: base.hideTooltip() } + SidebarAdvanced { id: sidebarAdvanced;