15.10 Changes the styling for the open file button

Everything related to the font is not changed yet, first we have to agree on the chosen font

Contributes to: issue CURA-60
This commit is contained in:
Tamara Hogenhout 2015-08-19 14:52:38 +02:00
parent 43aee84f12
commit 2df2c9c6c8
3 changed files with 27 additions and 44 deletions

View file

@ -239,17 +239,15 @@ UM.MainWindow {
Button {
id: openFileButton;
iconSource: UM.Theme.icons.open;
style: UM.Backend.progress < 0 ? UM.Theme.styles.open_file_button : UM.Theme.styles.tool_button;
//style: UM.Backend.progress < 0 ? UM.Theme.styles.open_file_button : UM.Theme.styles.tool_button;
style: UM.Theme.styles.open_file_button
tooltip: '';
anchors {
top: parent.top;
topMargin: UM.Theme.sizes.window_margin.height;
topMargin: UM.Theme.sizes.loadfile_margin.height
left: parent.left;
leftMargin: UM.Theme.sizes.window_margin.width;
leftMargin: UM.Theme.sizes.loadfile_margin.width
}
action: actions.open;
}