diff --git a/Dalamud/Interface/Internal/Notifications/ActiveNotification.cs b/Dalamud/Interface/Internal/Notifications/ActiveNotification.cs index e444e63ef..7feb989c3 100644 --- a/Dalamud/Interface/Internal/Notifications/ActiveNotification.cs +++ b/Dalamud/Interface/Internal/Notifications/ActiveNotification.cs @@ -461,10 +461,10 @@ internal sealed class ActiveNotification : IActiveNotification, IDisposable { ImGui.PushTextWrapPos(maxCoord.X); + ImGui.SetCursorPos(minCoord); if ((this.Title ?? this.DefaultTitle) is { } title) { ImGui.PushStyleColor(ImGuiCol.Text, NotificationConstants.TitleTextColor); - ImGui.SetCursorPos(minCoord); ImGui.TextUnformatted(title); ImGui.PopStyleColor(); }