From fdcf07f45d1338d9e28fb25229026396841a35cc Mon Sep 17 00:00:00 2001 From: Anna Date: Thu, 14 Mar 2024 15:05:41 -0400 Subject: [PATCH] fix: wrap in details window --- client/EorzeaVotes/Ui/MoreDetailsWindow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/EorzeaVotes/Ui/MoreDetailsWindow.cs b/client/EorzeaVotes/Ui/MoreDetailsWindow.cs index 01828af..f32659f 100644 --- a/client/EorzeaVotes/Ui/MoreDetailsWindow.cs +++ b/client/EorzeaVotes/Ui/MoreDetailsWindow.cs @@ -33,6 +33,9 @@ internal class MoreDetailsWindow : IDrawable { return DrawStatus.Continue; } + ImGui.PushTextWrapPos(); + using var popTextWrapPos = new OnDispose(ImGui.PopTextWrapPos); + ImGui.TextUnformatted(this.Question.Text); ImGui.Spacing();