From 9b920c8ddcb7e4f97438bad69092e46669044fac Mon Sep 17 00:00:00 2001 From: goat Date: Tue, 18 Jul 2023 20:30:45 +0200 Subject: [PATCH] fix: profile tutorial text wrap --- .../PluginInstaller/ProfileManagerWidget.cs | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs index 074ccdf32..301e43473 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs @@ -95,11 +95,20 @@ internal class ProfileManagerWidget ImGuiHelpers.SafeTextWrapped(Locs.TutorialParagraphFour); ImGuiHelpers.ScaledDummy(5); ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommands); - ImGui.BulletText(Locs.TutorialCommandsEnable); - ImGui.BulletText(Locs.TutorialCommandsDisable); - ImGui.BulletText(Locs.TutorialCommandsToggle); - ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommandsEnd); + ImGui.Bullet(); + ImGui.SameLine(); + ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommandsEnable); + + ImGui.Bullet(); + ImGui.SameLine(); + ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommandsDisable); + + ImGui.Bullet(); + ImGui.SameLine(); + ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommandsToggle); + + ImGuiHelpers.SafeTextWrapped(Locs.TutorialCommandsEnd); ImGuiHelpers.ScaledDummy(5); var buttonWidth = 120f;