remove wallpaper view

This commit is contained in:
Benjamin Palko 2025-09-20 23:07:01 -04:00
parent e2816bcb1e
commit 2d251c044d
2 changed files with 0 additions and 19 deletions

View file

@ -118,12 +118,6 @@ StyledPanelWindow {
title: "Styling"
view: StylingView {}
}
ConfigurationView {
icon: Styling.lucide.icons.swatchBook
title: "Wallpapers"
view: Wallpaper {}
}
}
component ConfigurationView: QtObject {

View file

@ -1,13 +0,0 @@
import qs.services
import QtQuick
import QtQuick.Layouts
ColumnLayout {
Repeater {
model: WallpaperService.files
delegate: Text {
required property string dataModel
text: dataModel
}
}
}