mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-19 04:08:48 +00:00
dock: fix hover to reveal behavior (#1375)
This commit is contained in:
parent
49888f30f0
commit
bec43ff8ed
1 changed files with 3 additions and 2 deletions
|
|
@ -56,8 +56,9 @@ Scope { // Scope
|
|||
anchors.top: parent.top
|
||||
height: parent.height
|
||||
anchors.topMargin: dockRoot.reveal ? 0 :
|
||||
ConfigOptions?.dock.hoverToReveal ? (dockRoot.implicitHeight + 1) :
|
||||
(dockRoot.implicitHeight - ConfigOptions.dock.hoverRegionHeight)
|
||||
ConfigOptions?.dock.hoverToReveal ? (dockRoot.implicitHeight - ConfigOptions.dock.hoverRegionHeight) :
|
||||
(dockRoot.implicitHeight + 1)
|
||||
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
hoverEnabled: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue