[Scummvm-git-logs] scummvm master -> f0ae3efbeee1186577044b566ab85298eda90ad5

sev- noreply at scummvm.org
Sun Jun 29 23:35:02 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
f0ae3efbee QDENGINE: DT: Draw tree lines in Archive browser


Commit: f0ae3efbeee1186577044b566ab85298eda90ad5
    https://github.com/scummvm/scummvm/commit/f0ae3efbeee1186577044b566ab85298eda90ad5
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-06-30T01:33:36+02:00

Commit Message:
QDENGINE: DT: Draw tree lines in Archive browser

Changed paths:
    engines/qdengine/debugger/debugtools.cpp


diff --git a/engines/qdengine/debugger/debugtools.cpp b/engines/qdengine/debugger/debugtools.cpp
index 4e3a01e5b79..59ae5fd36ce 100644
--- a/engines/qdengine/debugger/debugtools.cpp
+++ b/engines/qdengine/debugger/debugtools.cpp
@@ -343,7 +343,9 @@ void displayTree(FileTree *tree) {
 		return;
 	}
 
-	if (ImGui::TreeNode((void*)(intptr_t)(tree->id), tree->name.c_str())) {
+	static ImGuiTreeNodeFlags base_flags = ImGuiTreeNodeFlags_DrawLinesFull;
+
+	if (ImGui::TreeNodeEx((void*)(intptr_t)(tree->id), base_flags, tree->name.c_str())) {
 		for (auto &it : tree->children)
 			displayTree(it);
 




More information about the Scummvm-git-logs mailing list