From aab2afd4077906cc1fb275b19e09bce4109d4c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 31 May 2015 22:38:21 +0200 Subject: [PATCH] fix a missing call to base clase --- OpenRA.Editor/Surface.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Editor/Surface.cs b/OpenRA.Editor/Surface.cs index 8738ffeafc..e072864623 100644 --- a/OpenRA.Editor/Surface.cs +++ b/OpenRA.Editor/Surface.cs @@ -517,6 +517,8 @@ namespace OpenRA.Editor if (x.Key != null && actorTemplates.ContainsKey(x.Value.Type)) DrawActorBorder(e.Graphics, x.Value.Location(), actorTemplates[x.Value.Type]); } + + base.OnPaint(e); } public void CopySelection()