Skip to content

Commit

Permalink
Fix the window sizer losing focus when rapidly dragging the mouse
Browse files Browse the repository at this point in the history
This would lead to annoyances when trying to resize the window as the window sizer would lose focus
  • Loading branch information
smallmodel authored Dec 20, 2024
1 parent 011f496 commit e6848a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/uilib/uistatus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ UIWindowSizer::UIWindowSizer()
{
m_draggingwidget = NULL;
m_mouseState = M_NONE;

// Added in OPM
// So this can be made as the first responder
m_canactivate = true;
}


Expand Down

0 comments on commit e6848a3

Please sign in to comment.