From 87b37fd3860d75c0a90f7a67adb94e3267d1779b Mon Sep 17 00:00:00 2001 From: MayoCollector Date: Wed, 11 Mar 2026 02:27:03 +0900 Subject: [PATCH] Fix volume slider title text horizontal scaling on some languages (#36915) closes #36892. |master|This PR| |---|---| |![osu_2026-03-10_18-37-55](https://github.com/user-attachments/assets/15defef7-e1b8-485b-928b-886bb79215e2)|![osu_2026-03-10_18-43-40](https://github.com/user-attachments/assets/df4926f8-d960-45e2-ab98-1b455dc789b5)| --- osu.Game/Overlays/Volume/VolumeMeter.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/osu.Game/Overlays/Volume/VolumeMeter.cs b/osu.Game/Overlays/Volume/VolumeMeter.cs index ec3d897a63..e75ee14067 100644 --- a/osu.Game/Overlays/Volume/VolumeMeter.cs +++ b/osu.Game/Overlays/Volume/VolumeMeter.cs @@ -215,6 +215,7 @@ namespace osu.Game.Overlays.Volume new Container { Size = LABEL_SIZE, + AutoSizeAxes = Axes.X, CornerRadius = 10, Masking = true, Margin = new MarginPadding { Left = CircleSize + 10 }, @@ -229,6 +230,10 @@ namespace osu.Game.Overlays.Volume }, new OsuSpriteText { + Margin = new MarginPadding + { + Horizontal = 32, + }, Anchor = Anchor.Centre, Origin = Anchor.Centre, Font = OsuFont.GetFont(weight: FontWeight.Bold),