From 571abd97a376f293262c693ce983108097bcf785 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sun, 19 Aug 2012 11:44:14 +0100 Subject: [PATCH] Prevent mouse up from leaving a little blob, fixes #130 --- src/game/GameView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index f743d5a4e..dbe7f3058 100644 --- a/src/game/GameView.cpp +++ b/src/game/GameView.cpp @@ -1113,7 +1113,7 @@ void GameView::OnMouseUp(int x, int y, unsigned button) if(drawMode == DrawPoints) { c->ToolClick(toolIndex, ui::Point(x, y)); - pointQueue.push(new ui::Point(x, y)); + //pointQueue.push(new ui::Point(x, y)); } if(drawModeReset) {