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:
parent
16078ed240
commit
165f0bbdaf
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user