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
This commit is contained in:
Tamara Hogenhout 2015-06-11 14:41:52 +02:00 committed by Arjen Hiemstra
parent 0b9986d34b
commit 4bd5aeda6a
2 changed files with 2 additions and 3 deletions

View file

@ -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 {

View file

@ -47,7 +47,6 @@ Item {
Button {
text: model.name;
iconSource: UM.Theme.icons[model.icon];
tooltip: model.description;
checkable: true;
checked: model.active;