Minor fix to dragging

This commit is contained in:
vaxerski 2023-02-28 23:14:49 +00:00
parent 18ebaa7189
commit 376e3745b3
1 changed files with 3 additions and 2 deletions

View File

@ -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) {