mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-07 12:15:58 +01:00
Minor fix to dragging
This commit is contained in:
parent
18ebaa7189
commit
376e3745b3
1 changed files with 3 additions and 2 deletions
|
@ -76,8 +76,9 @@ void CHyprBar::onMouseDown(wlr_pointer_button_event* e) {
|
|||
return;
|
||||
}
|
||||
|
||||
// if we do this here the handler later will remove our mouse bind
|
||||
m_bDragPending = true;
|
||||
// if we call da dispatcher here the handler later will remove our mouse bind
|
||||
if (VECINRECT(COORDS, 0, 0, m_vLastWindowSize.x, *PHEIGHT))
|
||||
m_bDragPending = true;
|
||||
}
|
||||
|
||||
void CHyprBar::onMouseMove(Vector2D coords) {
|
||||
|
|
Loading…
Reference in a new issue