Fix wallpaper selector height

This commit is contained in:
Ly-sec 2025-08-07 19:20:07 +02:00
parent dc77bc667a
commit 0992237411
3 changed files with 4 additions and 10 deletions

View file

@ -317,7 +317,7 @@ PanelWithOverlay {
}
ColumnLayout {
Item {
id: settingsContainer
anchors {
@ -332,15 +332,15 @@ PanelWithOverlay {
Loader {
id: settingsLoader
Layout.fillWidth: true
Layout.fillHeight: true
anchors.fill: parent
sourceComponent: generalSettings
active: true
}
// Wallpaper Selector Component
// Wallpaper Selector Component - positioned as overlay
WallpaperSelector {
id: wallpaperSelector
anchors.fill: parent
}
}

View file

@ -16,9 +16,6 @@ Rectangle {
wallpaperOverlay.visible = true;
}
Layout.fillWidth: true
Layout.fillHeight: true
color: Theme.backgroundPrimary
visible: false
z: 1000

View file

@ -13,9 +13,6 @@ import qs.Widgets.SettingsWindow
import qs.Settings
import qs.Helpers
import "./Helpers/IdleInhibitor.qml"
import "./Helpers/IPCHandlers.qml"
Scope {
id: root