Update Dependencies

This commit is contained in:
TheBrokenRail 2025-02-15 14:32:48 -05:00
parent 386e4a19eb
commit 457d070dea
5 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit d4900dab6a9eea864fb14ed1ff7ea5b9f8678e04
Subproject commit 7e61aa2e56d67b46a0b055363a4cb4fbe4662ef8

@ -1 +1 @@
Subproject commit 21fea01161e0d6b70c0c5c1f52dc8e7a7df14a50
Subproject commit e7ea71be039836da3a98cea55ae5569cb5eb885c

@ -1 +1 @@
Subproject commit 6982ce43f5b143c5dce5fab0ce07dd4867b705ae
Subproject commit dbb5eeaadffb6a3ba6a60de1290312e5802dba5a

@ -1 +1 @@
Subproject commit 5d400a2b7790f3d99284acb9d44b29012b628943
Subproject commit 873f50e97feddaeb4e862e294690b3ec87030548

View File

@ -161,7 +161,7 @@ void ConfigurationUI::draw_category(FlagNode &category) {
const std::string label = get_label_for_flag_node(child);
if (!child.children.empty()) {
// Sub-Category
if (ImGui::TreeNode(label.c_str())) {
if (ImGui::TreeNodeEx(label.c_str(), ImGuiTreeNodeFlags_SpanAvailWidth)) {
draw_category(child);
ImGui::TreePop();
}