diff --git a/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorSelectionLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorSelectionLogic.cs index b623eea294..87e7371bf1 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorSelectionLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorSelectionLogic.cs @@ -85,7 +85,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic () => selectionFilters)); }; - pasteButton.IsDisabled = () => clipboard == null; + pasteButton.IsDisabled = () => clipboard == null || (clipboard.Value.Actors.Count == 0 && clipboard.Value.Tiles.Count == 0); pasteButton.IsHighlighted = () => editor.CurrentBrush is EditorCopyPasteBrush; var deleteAreaSelectionButton = areaEditPanel.Get("SELECTION_DELETE_BUTTON");