fix ConfigOverlay behavior/appearance

pull/15/head
Michail Vourlakos 5 years ago
parent 114828ad88
commit 35bc8f3560

@ -108,7 +108,7 @@ Item{
//! is used to increase the mask thickness
readonly property int marginBetweenContentsAndRuler: 10
property int extraNormalThickMask: Math.max(indicatorsExtraThickMask, shadowsExtraThickMask)
property int extraZoomThickMask: Math.max(marginBetweenContentsAndRuler, indicatorsExtraThickMask, shadowsExtraThickMask)
property int extraZoomThickMask: marginBetweenContentsAndRuler + Math.max(indicatorsExtraThickMask, shadowsExtraThickMask)
//! this is set from indicators when they need extra thickness mask size
readonly property int indicatorsExtraThickMask: indicators.info.extraMaskThickness
property int shadowsExtraThickMask: {

@ -57,7 +57,7 @@ MouseArea {
property int appletX
property int appletY
readonly property int thickness: visibilityManager.thicknessNormalOriginalValue - visibilityManager.extraThickMask - 1
readonly property int thickness: visibilityManager.thicknessNormalOriginalValue - visibilityManager.extraNormalThickMask - 1
readonly property int spacerHandleSize: units.smallSpacing
onHeightChanged: tooltip.visible = false;

@ -34,7 +34,7 @@ Item{
id: settingsRoot
readonly property bool containsMouse: false /*headerSettings.containsMouse || ruler.containsMouse
|| tooltipMouseArea.containsMouse || editBackMouseArea.containsMouse*/
readonly property int thickness: ruler.thickness + headerSettings.thickness + spacing * 3
readonly property int thickness: ruler.thickness + headerSettings.thickness + spacing * 5
readonly property int spacing: 4
property int textShadow: {

Loading…
Cancel
Save