1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-25 19:21:41 +03:00

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.
This commit is contained in:
Michail Vourlakos 2020-05-27 18:31:39 +03:00
parent 2ba90621f7
commit 27c947e5ad

View File

@ -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;
}
}
}