debug: add button to test the loading dialog

This commit is contained in:
goat 2024-07-17 16:49:52 +02:00
parent 64f49be395
commit af29419cc9

View file

@ -895,6 +895,14 @@ internal class DalamudInterface : IInternalDisposableService
{
this.configuration.ShowDevBarInfo = !this.configuration.ShowDevBarInfo;
}
ImGui.Separator();
if (ImGui.MenuItem("Show loading window"))
{
var dialog = new LoadingDialog();
dialog.Show();
}
ImGui.EndMenu();
}