Fix WallpaperSelector scrolling

This commit is contained in:
Ly-sec 2025-08-13 15:54:49 +02:00
parent 2a55cc03c8
commit d345e3fbc0

View file

@ -123,7 +123,10 @@ Item {
clip: true
model: folderModel
// Fixed 5 items per row - more aggressive sizing
boundsBehavior: Flickable.StopAtBounds
flickableDirection: Flickable.AutoFlickDirection
interactive: false
property int columns: 5
property int itemSize: Math.floor(
(width - leftMargin - rightMargin - (4 * Style.marginSmall * scaling)) / columns)