mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed missing return statement
This commit is contained in:
parent
00c1de54b9
commit
37dd66f7ad
1 changed files with 1 additions and 1 deletions
|
@ -836,8 +836,8 @@ bool BaseWindow::handleMOVE(MSG *msg)
|
|||
this->currentBounds_ = QRect(QPoint(rect.left, rect.top),
|
||||
QPoint(rect.right - 1, rect.bottom - 1));
|
||||
}
|
||||
return false;
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
||||
|
|
Loading…
Reference in a new issue