fix: more strictly close bar popouts
This commit is contained in:
parent
2bdcf4d504
commit
bc5d256073
1 changed files with 4 additions and 0 deletions
|
|
@ -62,6 +62,10 @@ CustomMouseArea {
|
||||||
if (y < Config.bar.height && !popoutsSuppressed && !popouts.persistent) {
|
if (y < Config.bar.height && !popoutsSuppressed && !popouts.persistent) {
|
||||||
bar.checkPopout(x);
|
bar.checkPopout(x);
|
||||||
}
|
}
|
||||||
|
// Hide bar popouts (if user moves mouse along edge)
|
||||||
|
if (y > popouts.nonAnimHeight + Config.bar.height) {
|
||||||
|
popouts.hasCurrent = false;
|
||||||
|
}
|
||||||
|
|
||||||
// Show osd on hover
|
// Show osd on hover
|
||||||
const showOsd = inRightPanel(panels.osd, x, y);
|
const showOsd = inRightPanel(panels.osd, x, y);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue