From d7ebf0670985e4ec8e4985d6cc3936388ec511ad Mon Sep 17 00:00:00 2001 From: uncor3 Date: Sun, 4 Jan 2026 22:17:16 +0000 Subject: [PATCH] faster gallery thumbnails --- src/gallerywidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallerywidget.cpp b/src/gallerywidget.cpp index de862f5..48d4aed 100644 --- a/src/gallerywidget.cpp +++ b/src/gallerywidget.cpp @@ -505,8 +505,8 @@ void GalleryWidget::setControlsEnabled(bool enabled) QIcon GalleryWidget::loadAlbumThumbnail(const QString &albumPath) { // Get album directory contents - AFCFileTree albumTree = - ServiceManager::safeGetFileTree(m_device, albumPath.toStdString()); + AFCFileTree albumTree = ServiceManager::safeGetFileTree( + m_device, albumPath.toStdString(), false); if (!albumTree.success) { qDebug() << "Failed to read album directory:" << albumPath;