From 0bd15792c2f1e00b6a8dd6585c07a99df04f0ec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20B=C5=99=C3=ADza?= Date: Thu, 19 Oct 2023 22:52:43 +0200 Subject: [PATCH] 1.6 release: Disable image thumbnails These will be enabled when they're actually ready, at this moment the biggest problem is downloading full-sized images just for the purposes of a tiny preview. --- modules/Lith/UI/CMakeLists.txt | 2 +- modules/Lith/UI/ChannelMessage.qml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/Lith/UI/CMakeLists.txt b/modules/Lith/UI/CMakeLists.txt index 0c9b555..667e339 100644 --- a/modules/Lith/UI/CMakeLists.txt +++ b/modules/Lith/UI/CMakeLists.txt @@ -5,7 +5,7 @@ set(LITH_QML ChannelMessage.qml ChannelMessageActionMenu.qml ChannelMessageList.qml - ChannelMessageThumbnail.qml + //ChannelMessageThumbnail.qml ChannelTextInput.qml ChannelView.qml DataBrowser.qml diff --git a/modules/Lith/UI/ChannelMessage.qml b/modules/Lith/UI/ChannelMessage.qml index 27fc963..240e1e9 100644 --- a/modules/Lith/UI/ChannelMessage.qml +++ b/modules/Lith/UI/ChannelMessage.qml @@ -190,7 +190,7 @@ Item { linkHandler.show(link, root) } } - + /* Flow { id: thumbnailLayout Layout.fillWidth: true @@ -204,6 +204,7 @@ Item { } } } + */ } } }