fix(editor): About dialog now works, moved outside menu bar scope

- About dialog was broken because ImGui::OpenPopup inside BeginMenu
  has wrong ID scope — popup never appeared
- Changed to a proper ImGui::Begin window with showAbout_ flag
- Closeable with X button or clicking About again
- Shows version, author, feature summary, and tech stack
This commit is contained in:
Kelsi 2026-05-05 09:11:46 -07:00
parent bab1318ec9
commit 560c4a40c0
2 changed files with 10 additions and 6 deletions

View file

@ -43,6 +43,7 @@ private:
bool showLoadDialog_ = false;
bool showSaveDialog_ = false;
bool showHelp_ = false;
bool showAbout_ = false;
char newMapNameBuf_[256] = "CustomZone";
int newTileX_ = 32;