From 457d070dea80a20fc584cbb08a3aa309bcc35fd7 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sat, 15 Feb 2025 14:32:48 -0500 Subject: [PATCH] Update Dependencies --- dependencies/LIEF/src | 2 +- dependencies/glfw/src | 2 +- dependencies/imgui/src | 2 +- dependencies/runtime/src | 2 +- launcher/src/client/ui.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dependencies/LIEF/src b/dependencies/LIEF/src index d4900dab..7e61aa2e 160000 --- a/dependencies/LIEF/src +++ b/dependencies/LIEF/src @@ -1 +1 @@ -Subproject commit d4900dab6a9eea864fb14ed1ff7ea5b9f8678e04 +Subproject commit 7e61aa2e56d67b46a0b055363a4cb4fbe4662ef8 diff --git a/dependencies/glfw/src b/dependencies/glfw/src index 21fea011..e7ea71be 160000 --- a/dependencies/glfw/src +++ b/dependencies/glfw/src @@ -1 +1 @@ -Subproject commit 21fea01161e0d6b70c0c5c1f52dc8e7a7df14a50 +Subproject commit e7ea71be039836da3a98cea55ae5569cb5eb885c diff --git a/dependencies/imgui/src b/dependencies/imgui/src index 6982ce43..dbb5eeaa 160000 --- a/dependencies/imgui/src +++ b/dependencies/imgui/src @@ -1 +1 @@ -Subproject commit 6982ce43f5b143c5dce5fab0ce07dd4867b705ae +Subproject commit dbb5eeaadffb6a3ba6a60de1290312e5802dba5a diff --git a/dependencies/runtime/src b/dependencies/runtime/src index 5d400a2b..873f50e9 160000 --- a/dependencies/runtime/src +++ b/dependencies/runtime/src @@ -1 +1 @@ -Subproject commit 5d400a2b7790f3d99284acb9d44b29012b628943 +Subproject commit 873f50e97feddaeb4e862e294690b3ec87030548 diff --git a/launcher/src/client/ui.cpp b/launcher/src/client/ui.cpp index d32da924..1b1941da 100644 --- a/launcher/src/client/ui.cpp +++ b/launcher/src/client/ui.cpp @@ -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(); }