diff --git a/Dalamud/Interface/Internal/Windows/TitleScreenMenuWindow.cs b/Dalamud/Interface/Internal/Windows/TitleScreenMenuWindow.cs index 979f68bf8..ce8c192a4 100644 --- a/Dalamud/Interface/Internal/Windows/TitleScreenMenuWindow.cs +++ b/Dalamud/Interface/Internal/Windows/TitleScreenMenuWindow.cs @@ -11,7 +11,6 @@ using Dalamud.Game.ClientState; using Dalamud.Game.Gui; using Dalamud.Game.Text; using Dalamud.Interface.Animation.EasingFunctions; -using Dalamud.Interface.ImGuiSeStringRenderer; using Dalamud.Interface.ManagedFontAtlas; using Dalamud.Interface.ManagedFontAtlas.Internals; using Dalamud.Interface.Textures.TextureWraps; @@ -398,9 +397,14 @@ internal class TitleScreenMenuWindow : Window, IDisposable // Drop shadow ImGui.SetCursorPos(cursor); - var renderStyle = default(SeStringDrawParams); - renderStyle.FontSize = TargetFontSizePx; - ImGuiHelpers.CompileSeStringWrapped($"{entry.Name}", renderStyle); + ImGuiHelpers.SeStringWrapped( + ReadOnlySeString.FromText(entry.Name), + new() + { + FontSize = TargetFontSizePx * ImGui.GetIO().FontGlobalScale, + Edge = true, + Shadow = true, + }); if (overrideAlpha) {