1
0
mirror of synced 2025-01-18 09:04:52 +01:00

impr: Hide sections with an empty name

This commit is contained in:
WerWolv 2023-07-03 12:04:20 +02:00
parent 39e74c627e
commit d297b2d1cc
2 changed files with 4 additions and 1 deletions

@ -1 +1 @@
Subproject commit 85dac566096528099ae956a49a7ccfe7de1d3f97
Subproject commit 965ba40f8b4dca7c1c52a4d7a5b3d42c991f5a96

View File

@ -480,6 +480,9 @@ namespace hex::plugin::builtin {
if (TRY_LOCK(ContentRegistry::PatternLanguage::getRuntimeLock())) {
for (auto &[id, section] : sections) {
if (section.name.empty())
continue;
ImGui::PushID(id);
ImGui::TableNextRow();