diff --git a/resources/images/cura.png b/resources/images/cura.png index c61f6584f7..cc24274de7 100644 Binary files a/resources/images/cura.png and b/resources/images/cura.png differ diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index 445203372e..a5e6095ece 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -191,7 +191,7 @@ Rectangle { Button { id: saveToButton property int resizedWidth - x: base.width - saveToButton.resizedWidth - UM.Theme.sizes.default_margin.width - UM.Theme.sizes.save_button_save_to_button.height + x: base.width - saveToButton.resizedWidth - UM.Theme.sizes.default_margin.width - UM.Theme.sizes.save_button_save_to_button.height + 2 tooltip: UM.OutputDeviceManager.activeDeviceDescription; enabled: base.progress > 0.99 && base.activity == true height: UM.Theme.sizes.save_button_save_to_button.height @@ -215,19 +215,8 @@ Rectangle { control.hovered ? UM.Theme.colors.action_button_hovered : UM.Theme.colors.action_button Behavior on color { ColorAnimation { duration: 50; } } width: { - var w = 0; - if (base.width*0.55 > actualLabel.width + (UM.Theme.sizes.default_margin.width * 2)){ - saveToButton.resizedWidth = base.width*0.55 - w = base.width*0.55 - } - else { - saveToButton.resizedWidth = actualLabel.width + (UM.Theme.sizes.default_margin.width * 2) - w = actualLabel.width + (UM.Theme.sizes.default_margin.width * 2) - } - if(w < base.width * 0.55) { - w = base.width * 0.55; - } - return w; + saveToButton.resizedWidth = actualLabel.width + (UM.Theme.sizes.default_margin.width * 2) + return saveToButton.resizedWidth } Label { id: actualLabel diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index 0bc8deb5cd..fa308205a4 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -63,7 +63,6 @@ Item anchors.rightMargin: UM.Theme.sizes.default_margin.width - (UM.Theme.sizes.default_margin.width/4) anchors.top: parent.top anchors.topMargin: UM.Theme.sizes.default_margin.height - anchors.fill: width Repeater { id: infillListView