1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-29 07:21:49 +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 //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 //and also by the menu appearing from tasks for the same reason
function slotDisableHiding(value) { function slotDisableHiding(value) {
console.log("ui block hiding:"+value); if (plasmoid.userConfiguring)
dock.visibility.blockHiding = value; return;
dock.visibility.blockHiding = !value;
} }
function updateAutomaticIconSize() { function updateAutomaticIconSize() {