# 0.2.7-1 **HOTFIX**

- Fix nullptr->value access issue in UI7::Context
- Add UI7MenuFlags_NoMove to disable window movement
- Fix testapp to support the new DebugLabels standard
This commit is contained in:
2025-03-06 20:22:13 +01:00
parent e45598f9f6
commit 85e12c45c0
5 changed files with 24 additions and 21 deletions

View File

@@ -61,7 +61,7 @@ bool UI7::Context::BeginMenu(const ID& id, UI7MenuFlags flags) {
if (!this->current->is_open) {
this->current = nullptr;
}
return this->current->is_open;
return this->current != nullptr;
}
UI7::Menu::Ref UI7::Context::GetCurrentMenu() {