fix: text wrap inactive questions

This commit is contained in:
Anna 2023-12-23 15:37:20 -05:00
parent 7f7ea80a3d
commit 4089eca884
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,9 @@ internal class QuestionsTab {
return;
}
ImGui.PushTextWrapPos();
using var pop = new OnDispose(ImGui.PopTextWrapPos);
foreach (var question in this.Plugin.Manager) {
if (question.Active || question is not FullQuestion full) {
continue;