From 377a99294f6941a10b31554c4b3a839fae93a873 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Fri, 31 Oct 2014 14:09:02 -0400 Subject: [PATCH] this should allow you to place the zoom window while selecting an area to stamp --- src/gui/game/GameView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index dc646af43..04e16ab12 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -1063,7 +1063,7 @@ void GameView::OnMouseDown(int x, int y, unsigned button) { if (selectMode != SelectNone) { - if (button == BUTTON_LEFT) + if (button == BUTTON_LEFT && selectPoint1.X == -1) { selectPoint1 = c->PointTranslate(ui::Point(x, y)); selectPoint2 = selectPoint1;