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

don't unlock blockHiding property when user is configuring

This commit is contained in:
Johan Smith Agudelo Rodriguez 2017-01-13 01:18:14 -05:00
parent 16078ed240
commit 165f0bbdaf

View File

@ -875,8 +875,10 @@ DragDrop.DropArea {
//this is used when dragging a task in order to not hide the dock
//and also by the menu appearing from tasks for the same reason
function slotDisableHiding(value) {
console.log("ui block hiding:"+value);
dock.visibility.blockHiding = value;
if (plasmoid.userConfiguring)
return;
dock.visibility.blockHiding = !value;
}
function updateAutomaticIconSize() {