From 27c947e5ad7101ddc450cd28f4a8ab52803e2e51 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 27 May 2020 18:31:39 +0300 Subject: [PATCH] disable workaround for previews validity --in the past in order for previews to be valid we had to hide and reshow previews after each current task changing. As it appears this might not be needed any more, let's try to disable it. --- plasmoid/package/contents/ui/main.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plasmoid/package/contents/ui/main.qml b/plasmoid/package/contents/ui/main.qml index 7e2f93c29..0808c4373 100644 --- a/plasmoid/package/contents/ui/main.qml +++ b/plasmoid/package/contents/ui/main.qml @@ -573,9 +573,10 @@ Item { //! Workaround in order to update properly the previews thumbnails //! when switching between single thumbnail to another single thumbnail - mainItem.visible = false; + //! maybe is not needed any more, let's disable it + //mainItem.visible = false; visible = true; - mainItem.visible = true; + //mainItem.visible = true; } } }