This commit is contained in:
Lemmy
2026-03-04 08:14:33 -05:00
parent f342abf443
commit 6732eac58a
2 changed files with 24 additions and 30 deletions
+3 -3
View File
@@ -8,12 +8,12 @@ QtObject {
// Check if the old setting exists
if (rawJson.controlCenter && rawJson.controlCenter.openAtMouseOnBarRightClick !== undefined) {
if (!rawJson.bar) rawJson.bar = {};
if (!rawJson.bar)
rawJson.bar = {};
rawJson.bar.rightClickFollowMouse = rawJson.controlCenter.openAtMouseOnBarRightClick;
delete rawJson.controlCenter.openAtMouseOnBarRightClick;
logger.i("Settings", "Successfully moved openAtMouseOnBarRightClick to bar.rightClickFollowMouse");
}