1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 07:52:50 -05:00

dank tooltip v2: apply to settings

This commit is contained in:
bbedward
2025-11-23 20:00:25 -05:00
parent b036da2446
commit 30cbfe729d
3 changed files with 250 additions and 327 deletions

View File

@@ -11,6 +11,10 @@ Item {
property var parentModal: null
property string selectedBarId: "default"
DankTooltipV2 {
id: sharedTooltip
}
property var selectedBarConfig: {
selectedBarId;
SettingsData.barConfigs;
@@ -2425,7 +2429,7 @@ Item {
SettingsData.updateBarConfig(selectedBarId, {
transparency: newValue / 100
});
notifyHorizontalBarChange()
notifyHorizontalBarChange();
}
Binding {
@@ -2477,7 +2481,7 @@ Item {
SettingsData.updateBarConfig(selectedBarId, {
widgetTransparency: 1.0
});
notifyHorizontalBarChange()
notifyHorizontalBarChange();
}
}
@@ -2502,7 +2506,7 @@ Item {
SettingsData.updateBarConfig(selectedBarId, {
widgetTransparency: newValue / 100
});
notifyHorizontalBarChange()
notifyHorizontalBarChange();
}
Binding {
@@ -2573,7 +2577,7 @@ Item {
SettingsData.updateBarConfig(selectedBarId, {
fontScale: newScale
});
notifyHorizontalBarChange()
notifyHorizontalBarChange();
}
}
@@ -2607,7 +2611,7 @@ Item {
SettingsData.updateBarConfig(selectedBarId, {
fontScale: newScale
});
notifyHorizontalBarChange()
notifyHorizontalBarChange();
}
}
}