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
parent ff058bbfae
commit 4d1fdc92b3
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;