1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-02-10 09:57:35 +03:00

fix breakage in par.effect from separators applets

This commit is contained in:
Michail Vourlakos 2018-02-18 22:36:26 +02:00
parent 90ee9ef00b
commit 00241dcd8f

View File

@ -564,7 +564,7 @@ Item {
fastEnteringFlag = false;
}
if ((layoutsContainer.hoveredIndex !== -1 || layoutsContainer.hoveredIndex===index)
if ((layoutsContainer.hoveredIndex !== -1)
&& !enableDirectRenderTimer.running && !root.globalDirectRender) {
fastEnteringFlag = true;
}
@ -581,14 +581,14 @@ Item {
return;
}
/* if (root.isHorizontal){
if (root.isHorizontal){
layoutsContainer.currentSpot = mouseX;
wrapper.calculateScales(mouseX);
}
else{
layoutsContainer.currentSpot = mouseY;
wrapper.calculateScales(mouseY);
}*/
}
}
onExited:{