[Scummvm-git-logs] scummvm master -> 3c23e9e2a68d8e06d3f339e6f7587af7f1534f1b

sev- noreply at scummvm.org
Wed May 22 23:27:49 UTC 2024


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

Summary:
3c23e9e2a6 DIRECTOR: DEBUGGER: Added navigation buttons to script window


Commit: 3c23e9e2a68d8e06d3f339e6f7587af7f1534f1b
    https://github.com/scummvm/scummvm/commit/3c23e9e2a68d8e06d3f339e6f7587af7f1534f1b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-05-23T01:27:17+02:00

Commit Message:
DIRECTOR: DEBUGGER: Added navigation buttons to script window

Changed paths:
    engines/director/debugtools.cpp


diff --git a/engines/director/debugtools.cpp b/engines/director/debugtools.cpp
index 773400b1d47..92d6b49268e 100644
--- a/engines/director/debugtools.cpp
+++ b/engines/director/debugtools.cpp
@@ -2096,6 +2096,19 @@ static void displayScripts() {
 	ImGui::SetNextWindowSize(ImVec2(240, 240), ImGuiCond_FirstUseEver);
 
 	if (ImGui::Begin("Script", &_state->_functions._showScript)) {
+		if (ImGui::Button("\ue5c4")) { // Backward	// arrow_back
+		}
+		ImGui::SetItemTooltip("Backward");
+		ImGui::SameLine();
+		if (ImGui::Button("\ue5c8")) { // Forward	// arrow_forward
+		}
+		ImGui::SetItemTooltip("Forward");
+		ImGui::SameLine(0, 20);
+		if (ImGui::Button("\ue889")) { // History	// history
+		}
+		ImGui::SetItemTooltip("History");
+		ImGui::SameLine(0, 40);
+
 		if (ImGui::Button("\uf569")) { // Lingo		// package_2
 			_state->_functions._showByteCode = false;
 		}




More information about the Scummvm-git-logs mailing list