From 496f8ca5838ff5106559404f1d6bc29b79f8d017 Mon Sep 17 00:00:00 2001 From: Michael Spencer Date: Wed, 6 May 2015 17:24:44 -0500 Subject: [PATCH] Fix the action button being too big --- modules/Material/ActionButton.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/Material/ActionButton.qml b/modules/Material/ActionButton.qml index b8708a5f..eb1a0b4d 100644 --- a/modules/Material/ActionButton.qml +++ b/modules/Material/ActionButton.qml @@ -70,6 +70,13 @@ Controls.Button { property bool isMiniSize: false style: ControlStyles.ButtonStyle { + padding { + left: 0 + right: 0 + top: 0 + bottom: 0 + } + background: Item { RectangularGlow { @@ -121,6 +128,7 @@ Controls.Button { anchors.centerIn: parent name: control.iconName color: button.iconColor + size: Units.dp(24) } } }