From 873e9e40f83641417eb1792e03772f7b51e7093c Mon Sep 17 00:00:00 2001 From: Lemmy Date: Thu, 1 Jan 2026 15:57:31 -0500 Subject: [PATCH] SetupWizard: fix property access --- Modules/Panels/SetupWizard/SetupWizard.qml | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Modules/Panels/SetupWizard/SetupWizard.qml b/Modules/Panels/SetupWizard/SetupWizard.qml index ec54519d1..eaba94079 100644 --- a/Modules/Panels/SetupWizard/SetupWizard.qml +++ b/Modules/Panels/SetupWizard/SetupWizard.qml @@ -253,15 +253,15 @@ SmartPanel { // Step 1: Wallpaper Setup SetupWallpaperStep { id: step1 - selectedDirectory: root.selectedWallpaperDirectory - selectedWallpaper: root.selectedWallpaper + selectedDirectory: panelContent.selectedWallpaperDirectory + selectedWallpaper: panelContent.selectedWallpaper onDirectoryChanged: function (directory) { - root.selectedWallpaperDirectory = directory; - root.applyWallpaperSettings(); + panelContent.selectedWallpaperDirectory = directory; + panelContent.applyWallpaperSettings(); } onWallpaperChanged: function (wallpaper) { - root.selectedWallpaper = wallpaper; - root.applyWallpaperSettings(); + panelContent.selectedWallpaper = wallpaper; + panelContent.applyWallpaperSettings(); } } @@ -273,15 +273,15 @@ SmartPanel { // Step 3: UI Configuration SetupCustomizeStep { id: step2 - selectedScaleRatio: root.selectedScaleRatio - selectedBarPosition: root.selectedBarPosition + selectedScaleRatio: panelContent.selectedScaleRatio + selectedBarPosition: panelContent.selectedBarPosition onScaleRatioChanged: function (ratio) { - root.selectedScaleRatio = ratio; - root.applyUISettings(); + panelContent.selectedScaleRatio = ratio; + panelContent.applyUISettings(); } onBarPositionChanged: function (position) { - root.selectedBarPosition = position; - root.applyUISettings(); + panelContent.selectedBarPosition = position; + panelContent.applyUISettings(); } }