diff --git a/wallpapers/image/imagepackage/contents/ui/ThumbnailsComponent.qml b/wallpapers/image/imagepackage/contents/ui/ThumbnailsComponent.qml index 61d8b21c8..b12dd056f 100644 --- a/wallpapers/image/imagepackage/contents/ui/ThumbnailsComponent.qml +++ b/wallpapers/image/imagepackage/contents/ui/ThumbnailsComponent.qml @@ -26,7 +26,9 @@ Item { function resetCurrentIndex() { //that min is needed as the module will be populated in an async way //and only on demand so we can't ensure it already exists - view.currentIndex = Qt.binding(() => Math.min(imageModel.indexOf(cfg_Image), imageModel.count - 1)); + if (configDialog.currentWallpaper === "org.kde.image") { + view.currentIndex = Qt.binding(() => Math.min(imageModel.indexOf(cfg_Image), imageModel.count - 1)); + } } //kill the space for label under thumbnails