From 571abd97a376f293262c693ce983108097bcf785 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sun, 19 Aug 2012 11:44:14 +0100 Subject: Prevent mouse up from leaving a little blob, fixes #130 diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index f743d5a..dbe7f30 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) { -- cgit v0.9.2-21-gd62e