ide: Fixed problem with titlebar drags

This commit is contained in:
Mirek Fidler 2026-01-15 11:39:57 +01:00
parent 31240d734f
commit e6755eb5c9
4 changed files with 9 additions and 8 deletions

View file

@ -456,7 +456,7 @@ bool Ctrl::MouseActiveCtrl(Ctrl *w, Point p)
for(Ctrl *q = w->GetLastChild(); q; q = q->GetPrev())
if(q->GetScreenRect().Contains(p))
return MouseActiveCtrl(q, p);
return w->IsMouseActive();
}