From 9858bc14fd6064d0cb38f6aad98bc718367f06ee Mon Sep 17 00:00:00 2001 From: uncor3 Date: Sun, 10 May 2026 18:19:52 +0000 Subject: [PATCH] remove debug logs --- src/ui/AlbumContents.qml | 2 -- src/ui/AppsTab.qml | 2 +- src/ui/DeviceGallery.qml | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ui/AlbumContents.qml b/src/ui/AlbumContents.qml index 2d9a0bf..e40af3d 100644 --- a/src/ui/AlbumContents.qml +++ b/src/ui/AlbumContents.qml @@ -71,8 +71,6 @@ Item { target : imageLoader function onThumbnailReady(path, rowHint) { - console.log(path, rowHint, "!!!!!!!!! album contents thumb ready") - const item = albumContentsModel.get(rowHint) if (item && item.filePath == path) { albumContentsModel.setProperty(rowHint, "thumbVersion", item.thumbVersion + 1) diff --git a/src/ui/AppsTab.qml b/src/ui/AppsTab.qml index 908263f..95fed0e 100644 --- a/src/ui/AppsTab.qml +++ b/src/ui/AppsTab.qml @@ -260,7 +260,7 @@ Item { // FIXME: wire up click handling Button { text: "Install" - color: "#007AFF" + // color: "#007AFF" font.pixelSize: 12 font.bold: true } diff --git a/src/ui/DeviceGallery.qml b/src/ui/DeviceGallery.qml index 75696f0..d361142 100644 --- a/src/ui/DeviceGallery.qml +++ b/src/ui/DeviceGallery.qml @@ -84,7 +84,6 @@ Item { target : imageLoader function onThumbnailReady(path, rowHint) { - console.log("thumb ready") const item = albumModel.get(rowHint) if (item && item.filePath == path) { albumModel.setProperty(rowHint, "thumbVersion", item.thumbVersion + 1)