1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-15 07:35:20 -04:00

fix(settings): fix text truncation in some section of settings and update icons (#2618)

* fixed spacing issues

* added one missing icon and replaced two
This commit is contained in:
Youseffo13
2026-06-11 21:35:51 +02:00
committed by GitHub
parent 573785d4ce
commit 29e8470f2e
7 changed files with 19 additions and 5 deletions
@@ -1754,6 +1754,9 @@ Item {
text: I18n.tr("Y Axis")
description: I18n.tr("Action performed when scrolling vertically on the bar")
model: CompositorService.isNiri ? [I18n.tr("None"), I18n.tr("Workspace"), I18n.tr("Column")] : [I18n.tr("None"), I18n.tr("Workspace")]
buttonPadding: Theme.spacingS
minButtonWidth: 44
textSize: Theme.fontSizeSmall
currentIndex: {
switch (selectedBarConfig?.scrollYBehavior || "workspace") {
case "none":
@@ -1792,6 +1795,9 @@ Item {
description: I18n.tr("Action performed when scrolling horizontally on the bar")
visible: CompositorService.isNiri
model: [I18n.tr("None"), I18n.tr("Workspace"), I18n.tr("Column")]
buttonPadding: Theme.spacingS
minButtonWidth: 44
textSize: Theme.fontSizeSmall
currentIndex: {
switch (selectedBarConfig?.scrollXBehavior || "column") {
case "none":