From 81ce6f00a22e27682966de678cedd1dacc35bf40 Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Wed, 5 Apr 2017 11:37:27 -0700 Subject: [PATCH] Fix typo with Math.Max --- src/QmlControls/ScreenTools.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/ScreenTools.qml b/src/QmlControls/ScreenTools.qml index 4fd7bd429..a7b8db48e 100644 --- a/src/QmlControls/ScreenTools.qml +++ b/src/QmlControls/ScreenTools.qml @@ -70,7 +70,7 @@ Item { property real implicitTextFieldHeight: Math.round(defaultFontPixelHeight * (isMobile ? 2.0 : 1.6)) property real implicitComboBoxHeight: Math.round(defaultFontPixelHeight * (isMobile ? 2.0 : 1.6)) property real implicitComboBoxWidth: Math.round(defaultFontPixelWidth * (isMobile ? 7.0 : 5.0)) - property real implicitSliderHeight: isMobile ? Math.Max(defaultFontPixelHeight, minTouchPixels) : defaultFontPixelHeight + property real implicitSliderHeight: isMobile ? Math.max(defaultFontPixelHeight, minTouchPixels) : defaultFontPixelHeight readonly property string normalFontFamily: "opensans" readonly property string demiboldFontFamily: "opensans-demibold" -- 2.22.0