1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

fix(dankdash): update tabIndex reordering for media & weather widgets

- Fixes #2762
This commit is contained in:
purian23
2026-07-06 00:33:42 -04:00
parent c11169eb4c
commit 590555dfc6
2 changed files with 7 additions and 5 deletions
@@ -736,7 +736,7 @@ Item {
case "music":
case "weather":
{
const tabIndex = widgetId === "clock" ? 0 : (widgetId === "music" ? 1 : 3);
const tabIndex = widgetId === "clock" ? 0 : SettingsData.dashTabIndexForId(widgetId === "music" ? "media" : "weather");
return barContent.openWidgetPopout(Object.assign({}, base, {
loader,
tabIndex,