From a158bb06fa3106573165e2efd05666a45fb693e7 Mon Sep 17 00:00:00 2001 From: myT <> Date: Fri, 7 Feb 2025 18:35:50 +0100 Subject: [PATCH] fixed shader editor hint popup not scrolling broken by b37b542b8931005d6d229607407b945406204f42 because of the renamed InputTextMultiline label --- code/renderer/tr_gui.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/renderer/tr_gui.cpp b/code/renderer/tr_gui.cpp index dfb95fd..4a8ef2b 100644 --- a/code/renderer/tr_gui.cpp +++ b/code/renderer/tr_gui.cpp @@ -2186,21 +2186,22 @@ static void DrawShaderEdit() } // need to get the cursor position before drawing the text edit - // so we know where it's top left corner is + // so we know where its top left corner is cursorPos = ImGui::GetWindowPos(); cursorPos.x += ImGui::GetCursorPos().x; cursorPos.y += ImGui::GetCursorPos().y; + const char* const editBoxLabel = va("##Shader Code: %s", shader->name); const int callbackFlags = ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackCharFilter | ImGuiInputTextFlags_CallbackAlways; ImGui::InputTextMultiline( - va("##Shader Code: %s", shader->name), window.code, sizeof(window.code), inputSize, + editBoxLabel, window.code, sizeof(window.code), inputSize, callbackFlags, &ShaderEditCallback); ImGuiContext& imguiContext = *GImGui; - const char* const multiLineName = va("%s/%s_%08X", imguiContext.CurrentWindow->Name, "##Shader Code", ImGui::GetID("##Shader Code")); + const char* const multiLineName = va("%s/%s_%08X", imguiContext.CurrentWindow->Name, editBoxLabel, ImGui::GetID(editBoxLabel)); ImGuiWindow* const multiLineWindow = ImGui::FindWindowByName(multiLineName); if(multiLineWindow != NULL) {