1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-21 10:50:30 +03:00

hide plasmoid preview when hovering an applet

This commit is contained in:
Michail Vourlakos 2018-03-16 00:39:46 +02:00
parent 452e93c33e
commit 607d6b4f4a

View File

@ -1396,6 +1396,10 @@ DragDrop.DropArea {
if (latteApplet && layoutsContainer.hoveredIndex>-1){
latteApplet.setHoveredIndex(-1);
}
if (latteApplet && latteApplet.windowPreviewIsShown && layoutsContainer.hoveredIndex>-1) {
latteApplet.hidePreview();
}
}
}