fix: allow DalamudDataWindow to collapse

This commit is contained in:
goat 2021-03-31 01:47:49 +02:00
parent 1b216bf618
commit 7fb01b547f

View file

@ -64,7 +64,7 @@ namespace Dalamud.Interface
var isOpen = true;
if (!ImGui.Begin("Dalamud Data", ref isOpen, ImGuiWindowFlags.NoCollapse)) {
if (!ImGui.Begin("Dalamud Data", ref isOpen)) {
ImGui.End();
return false;
}