feat(gui): Enhance CPU panel with state management and GUI improvements

This commit is contained in:
Carlo Pezzotti 2025-07-09 11:51:13 +02:00
parent 2bb666a088
commit 85559e249b
9 changed files with 340 additions and 302 deletions

View file

@ -14,6 +14,10 @@ namespace Pound::GUI
void ConsolePanel::Render()
{
if (!visible) {
return;
}
if (!ImGui::Begin(name.c_str(), &visible))
{
ImGui::End();