From 4d1fdc92b31306ff659851b25396e29ae459057e Mon Sep 17 00:00:00 2001 From: Tamara Hogenhout Date: Thu, 11 Jun 2015 14:41:52 +0200 Subject: [PATCH] Removes the default tooltips of the buttons to improve clarity Put the automatically added tooltips back to the default value (empty qSt) so the user doensn't sees two 'tooltips' Contributes to #43 --- resources/qml/Cura.qml | 4 ++-- resources/qml/Toolbar.qml | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 8c5c43d83c..7067c88c12 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -193,7 +193,7 @@ UM.MainWindow { iconSource: UM.Theme.icons.open; style: UM.Backend.progress < 0 ? UM.Theme.styles.open_file_button : UM.Theme.styles.tool_button; - + tooltip: ''; anchors { top: parent.top; topMargin: UM.Theme.sizes.window_margin.height; @@ -232,7 +232,7 @@ UM.MainWindow { iconSource: UM.Theme.icons.viewmode; style: UM.Theme.styles.tool_button; - + tooltip: ''; menu: Menu { id: viewMenu; Instantiator { diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index e7cb0788c5..d5126db481 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -47,7 +47,6 @@ Item { Button { text: model.name; iconSource: UM.Theme.icons[model.icon]; - tooltip: model.description; checkable: true; checked: model.active;