diff --git a/src/QmlControls/ToolStrip.qml b/src/QmlControls/ToolStrip.qml index ad5602c5da4..3366ddb5320 100644 --- a/src/QmlControls/ToolStrip.qml +++ b/src/QmlControls/ToolStrip.qml @@ -25,6 +25,7 @@ Rectangle { property alias model: repeater.model property real maxHeight ///< Maximum height for control, determines whether text is hidden to make control shorter property alias title: titleLabel.text + property var fontSize: ScreenTools.smallFontPointSize property var _dropPanel: dropPanel @@ -81,7 +82,7 @@ Rectangle { anchors.right: toolStripColumn.right height: width radius: ScreenTools.defaultFontPixelWidth / 2 - fontPointSize: ScreenTools.smallFontPointSize + fontPointSize: _root.fontSize toolStripAction: modelData dropPanel: _dropPanel onDropped: _root.dropped(index)