This commit is contained in:
Anna 2022-09-07 01:35:58 -04:00
parent 1491f63ae6
commit 77dc295535
1 changed files with 5 additions and 1 deletions

View File

@ -50,7 +50,11 @@ internal class MainWindow {
continue;
}
tab.Draw();
if (ImGui.BeginChild("##tab-content")) {
tab.Draw();
}
ImGui.EndChild();
ImGui.EndTabItem();
}