Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/ActionButton.qml')
-rw-r--r--resources/qml/ActionButton.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/qml/ActionButton.qml b/resources/qml/ActionButton.qml
index c84018fb07..1c231e5ef3 100644
--- a/resources/qml/ActionButton.qml
+++ b/resources/qml/ActionButton.qml
@@ -15,6 +15,7 @@ Button
property bool isIconOnRightSide: false
property alias iconSource: buttonIconLeft.source
+ property real iconSize: UM.Theme.getSize("action_button_icon").height
property alias textFont: buttonText.font
property alias cornerRadius: backgroundRect.radius
property alias tooltip: tooltip.tooltipText
@@ -109,7 +110,7 @@ Button
{
id: buttonIconLeft
source: ""
- height: visible ? UM.Theme.getSize("action_button_icon").height : 0
+ height: visible ? button.iconSize : 0
width: visible ? height : 0
sourceSize.width: width
sourceSize.height: height
@@ -158,7 +159,7 @@ Button
{
id: buttonIconRight
source: buttonIconLeft.source
- height: visible ? UM.Theme.getSize("action_button_icon").height : 0
+ height: visible ? button.iconSize : 0
width: visible ? height : 0
sourceSize.width: width
sourceSize.height: height