diff --git a/osu.Framework/Graphics/UserInterface/TextBox.cs b/osu.Framework/Graphics/UserInterface/TextBox.cs index 4f92c9612c..d0331a5a24 100644 --- a/osu.Framework/Graphics/UserInterface/TextBox.cs +++ b/osu.Framework/Graphics/UserInterface/TextBox.cs @@ -169,7 +169,11 @@ protected TextBox() Position = new Vector2(LeftRightPadding, 0), Children = new Drawable[] { - Placeholder = CreatePlaceholder(), + Placeholder = CreatePlaceholder().With(p => + { + p.Anchor = Anchor.CentreLeft; + p.Origin = Anchor.CentreLeft; + }), caret = CreateCaret().With(c => { c.Anchor = Anchor.CentreLeft;