From e3d3daf8078fd24fb7eaf984a6f1390371482eac Mon Sep 17 00:00:00 2001 From: zach Date: Tue, 16 Jun 2026 09:46:36 +0200 Subject: [PATCH] fix function call in wallpaper cropper --- Modules/Settings/Controls/WallpaperCropper.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Settings/Controls/WallpaperCropper.qml b/Modules/Settings/Controls/WallpaperCropper.qml index 3e90864..b0888b1 100644 --- a/Modules/Settings/Controls/WallpaperCropper.qml +++ b/Modules/Settings/Controls/WallpaperCropper.qml @@ -94,7 +94,7 @@ Item { const finalRect = Qt.rect(cropXPercent, cropYPercent, cropWidthPercent, cropHeightPercent); // We just pass the percentages directly to the backend - Wallpapers.setCrop(delegate.modelData.name, finalRect, finalRect, cropRect.zoom); + Wallpapers.setCrop(delegate.modelData.name, finalRect, cropRect.zoom); } function zoomClipRect(zoom: real): void {