1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-11 07:52:50 -05:00

Allow exclusive zone modifier

This commit is contained in:
bbedward
2025-08-25 23:29:31 -04:00
parent f074333c35
commit d48f5b0b3f
3 changed files with 35 additions and 1 deletions

View File

@@ -692,6 +692,32 @@ Item {
}
}
Column {
width: parent.width
spacing: Theme.spacingS
StyledText {
text: "Bottom Gap (Exclusive Zone)"
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
}
DankSlider {
width: parent.width
height: 24
value: SettingsData.topBarBottomGap
minimum: -100
maximum: 100
unit: ""
showValue: true
onSliderValueChanged: newValue => {
SettingsData.setTopBarBottomGap(
newValue)
}
}
}
Column {
width: parent.width
spacing: Theme.spacingS