From 9583b801f63cc22377a00c123b24c2dc5f5eadca Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 23 Feb 2016 19:57:13 +1300 Subject: [PATCH] Increase size of resize handle --- interface/resources/qml/windows-uit/Frame.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/resources/qml/windows-uit/Frame.qml b/interface/resources/qml/windows-uit/Frame.qml index 7f9e927d29..92ba2d4108 100644 --- a/interface/resources/qml/windows-uit/Frame.qml +++ b/interface/resources/qml/windows-uit/Frame.qml @@ -26,7 +26,7 @@ Item { readonly property int frameMarginLeft: frameMargin readonly property int frameMarginRight: frameMargin readonly property int frameMarginTop: 2 * frameMargin + iconSize - readonly property int frameMarginBottom: iconSize + 6 + readonly property int frameMarginBottom: iconSize + 11 // Frames always fill their parents, but their decorations may extend // beyond the window via negative margin sizes @@ -124,10 +124,10 @@ Item { } HiFiGlyphs { visible: sizeDrag.enabled - x: -5 // Move a little to visually align - y: -3 // "" + x: -11 // Move a little to visually align + y: -4 // "" text: "A" - size: iconSize + 4 + size: iconSize + 10 color: sizeDrag.containsMouse || sizeDrag.pressed ? hifi.colors.white : hifi.colors.white50 } }