From d893c4f534983d8c2d33b81d23cfcdd58e1846f6 Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 5 Dec 2019 10:59:29 -0400 Subject: [PATCH] SidePane: consider uiScale for manualSize --- src/qml/SidePane/SidePane.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qml/SidePane/SidePane.qml b/src/qml/SidePane/SidePane.qml index c4958bc8..f69e03eb 100644 --- a/src/qml/SidePane/SidePane.qml +++ b/src/qml/SidePane/SidePane.qml @@ -46,7 +46,9 @@ Rectangle { property int calculatedWidth: Math.min( - manuallyResized ? manualWidth : parentWidth * autoWidthRatio, + manuallyResized ? manualWidth * theme.uiScale : + parentWidth * autoWidthRatio, + maximumCalculatedWidth )