diff --git a/MLEM.Ui/UiSystem.cs b/MLEM.Ui/UiSystem.cs index a0ce2df..1d402bc 100644 --- a/MLEM.Ui/UiSystem.cs +++ b/MLEM.Ui/UiSystem.cs @@ -76,7 +76,7 @@ namespace MLEM.Ui { this.OnSelectedElementDrawn = (element, time, batch, alpha) => { if (!this.Controls.SelectedLastElementWithMouse && element.SelectionIndicator != null) { - batch.Draw(element.SelectionIndicator, element.DisplayArea, Color.White * alpha); + batch.Draw(element.SelectionIndicator, element.DisplayArea, Color.White * alpha, element.Scale / 2); } }; }