From 902006bf53bb8476941e2d060a7cb7999f493ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Mon, 12 Jul 2021 17:15:27 +0200 Subject: [PATCH] Fix editor losing copy after each paste. --- OpenRA.Mods.Common/EditorBrushes/EditorCopyPasteBrush.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OpenRA.Mods.Common/EditorBrushes/EditorCopyPasteBrush.cs b/OpenRA.Mods.Common/EditorBrushes/EditorCopyPasteBrush.cs index 2ba815ed09..230185a7be 100644 --- a/OpenRA.Mods.Common/EditorBrushes/EditorCopyPasteBrush.cs +++ b/OpenRA.Mods.Common/EditorBrushes/EditorCopyPasteBrush.cs @@ -95,7 +95,6 @@ namespace OpenRA.Mods.Common.Widgets var gridType = worldRenderer.World.Map.Grid.Type; var source = CellRegion.BoundingRegion(gridType, new[] { start, end }); Copy(source, cell - end); - editorWidget.ClearBrush(); break; } }