diff --git a/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs index 501fffe9f5..a48d94b3c4 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs @@ -91,8 +91,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic { var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos); var map = worldRenderer.World.Map; - var height = map.Height.Contains(cell) ? map.Height[cell] : 0; - return "{0},{1}".F(cell, height); + return map.Height.Contains(cell) ? + "{0},{1} ({2})".F(cell, map.Height[cell], map.Tiles[cell].Type) : ""; }; } diff --git a/mods/cnc/chrome/editor.yaml b/mods/cnc/chrome/editor.yaml index d34e668ec0..553d5210b7 100644 --- a/mods/cnc/chrome/editor.yaml +++ b/mods/cnc/chrome/editor.yaml @@ -464,7 +464,7 @@ Container@EDITOR_WORLD_ROOT: Font: Bold Contrast: true Label@CASH_LABEL: - X: 95 + X: 125 Width: 50 Height: 25 Align: Left diff --git a/mods/common/chrome/editor.yaml b/mods/common/chrome/editor.yaml index fd61be7b6a..c80a3a504e 100644 --- a/mods/common/chrome/editor.yaml +++ b/mods/common/chrome/editor.yaml @@ -439,7 +439,7 @@ Container@EDITOR_WORLD_ROOT: Font: Bold Contrast: true Label@CASH_LABEL: - X: 570 + X: 600 Width: 50 Height: 25 Align: Left