From 007b2c5434b04a66a84407dfeaecf15afa77de8c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 1 Jul 2012 18:37:46 +1200 Subject: [PATCH] make click-without-drag feel better in editor --- OpenRA.Editor/Surface.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRA.Editor/Surface.cs b/OpenRA.Editor/Surface.cs index 441a5c72dc..c6e353d508 100755 --- a/OpenRA.Editor/Surface.cs +++ b/OpenRA.Editor/Surface.cs @@ -218,7 +218,8 @@ namespace OpenRA.Editor if (e.Button == MouseButtons.Left) { Draw(); - if (!IsPaste) SelectionStart = GetBrushLocation(); + if (!IsPaste) + SelectionStart = SelectionEnd = GetBrushLocation(); } }