diff --git a/osu.Game.Rulesets.Karaoke/Configuration/KaraokeRulesetConfigManager.cs b/osu.Game.Rulesets.Karaoke/Configuration/KaraokeRulesetConfigManager.cs index aa035686e..0c458aee9 100644 --- a/osu.Game.Rulesets.Karaoke/Configuration/KaraokeRulesetConfigManager.cs +++ b/osu.Game.Rulesets.Karaoke/Configuration/KaraokeRulesetConfigManager.cs @@ -59,7 +59,6 @@ protected override void InitialiseDefaults() SetDefault(KaraokeRulesetSetting.MicrophoneDevice, string.Empty); // Font - SetDefault(KaraokeRulesetSetting.LyricScale, 2, 1, 4, 0.01); SetDefault(KaraokeRulesetSetting.MainFont, new FontUsage("Torus", 48, "Bold"), 48f, 48f); SetDefault(KaraokeRulesetSetting.RubyFont, new FontUsage("Torus", 20, "Bold"), 8f, 48f); SetDefault(KaraokeRulesetSetting.RubyMargin, 5, 0, 20); @@ -161,7 +160,6 @@ public enum KaraokeRulesetSetting MicrophoneDevice, // Font - LyricScale, MainFont, RubyFont, RubyMargin, diff --git a/osu.Game.Rulesets.Karaoke/Objects/Drawables/DrawableLyric.cs b/osu.Game.Rulesets.Karaoke/Objects/Drawables/DrawableLyric.cs index 272cc35d7..1b4b86524 100644 --- a/osu.Game.Rulesets.Karaoke/Objects/Drawables/DrawableLyric.cs +++ b/osu.Game.Rulesets.Karaoke/Objects/Drawables/DrawableLyric.cs @@ -67,7 +67,7 @@ public DrawableLyric([CanBeNull] Lyric hitObject) [BackgroundDependencyLoader(true)] private void load([CanBeNull] KaraokeSessionStatics session) { - Scale = new Vector2((float)(config?.Get(KaraokeRulesetSetting.LyricScale) ?? 2)); + Scale = new Vector2(2); AutoSizeAxes = Axes.Both; AddInternal(lyricPieces = new Container diff --git a/osu.Game.Rulesets.Karaoke/Screens/Settings/Sections/Graphics/LyricFontSettings.cs b/osu.Game.Rulesets.Karaoke/Screens/Settings/Sections/Graphics/LyricFontSettings.cs index edba98de5..760da3860 100644 --- a/osu.Game.Rulesets.Karaoke/Screens/Settings/Sections/Graphics/LyricFontSettings.cs +++ b/osu.Game.Rulesets.Karaoke/Screens/Settings/Sections/Graphics/LyricFontSettings.cs @@ -25,13 +25,6 @@ private void load() { Children = new Drawable[] { - new SettingsSlider - { - LabelText = "Overall scale", - Current = Config.GetBindable(KaraokeRulesetSetting.LyricScale), - KeyboardStep = 0.01f, - DisplayAsPercentage = true - }, new SettingsFont { LabelText = "Default main font",