1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-05 21:18:30 -04:00

fix(ui): resolve ui inconsistencies and missing i18n strings (#2719)

* Update WorkspacesTab.qml

* Update SettingsButtonGroupRow.qml

* Update WallpaperTab.qml

* Update WidgetsTabSection.qml

* add missing tooltips

* Update WallpaperTab.qml

* Update WorkspacesTab.qml
This commit is contained in:
Youseffo13
2026-07-02 17:27:15 +02:00
committed by GitHub
parent 4ae8ef927c
commit 83b9cdcb27
6 changed files with 327 additions and 63 deletions
@@ -72,6 +72,11 @@ Item {
signal sliderValueChanged(int newValue)
signal sliderDragFinished(int finalValue)
DankTooltipV2 {
id: sharedTooltip
}
width: parent?.width ?? 0
height: headerRow.height + Theme.spacingXS + slider.height
@@ -135,6 +140,12 @@ Item {
root.sliderValueChanged(root.defaultValue);
root.sliderDragFinished(root.defaultValue);
}
onEntered: {
sharedTooltip.show(I18n.tr("Reset"), resetButton, 0, 0, "bottom");
}
onExited: {
sharedTooltip.hide();
}
}
}
}