Minor fix to dragging

This commit is contained in:
vaxerski 2023-02-28 23:14:49 +00:00
parent 18ebaa7189
commit 376e3745b3

View file

@ -76,7 +76,8 @@ void CHyprBar::onMouseDown(wlr_pointer_button_event* e) {
return; return;
} }
// if we do this here the handler later will remove our mouse bind // 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; m_bDragPending = true;
} }