Skip to content

Commit

Permalink
Stop relaying messages when moving in-game windows
Browse files Browse the repository at this point in the history
  • Loading branch information
falbrechtskirchinger committed Jul 28, 2023
1 parent c23f990 commit 0e0b529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/s25main/ingameWindows/IngameWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ void IngameWindow::MoveNextToMouse()

bool IngameWindow::IsMessageRelayAllowed() const
{
return !isMinimized_;
return !isMinimized_ && !isMoving;
}

void IngameWindow::SaveOpenStatus(bool isOpen) const
Expand Down

0 comments on commit 0e0b529

Please sign in to comment.