From 2d536c359739cd73908644017a956d717313f474 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sat, 15 Nov 2025 11:27:51 +0100 Subject: [PATCH] add shift+g to jump to bottom of chat log --- src/chat_gui4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat_gui4.cpp b/src/chat_gui4.cpp index afd7e98..2370124 100644 --- a/src/chat_gui4.cpp +++ b/src/chat_gui4.cpp @@ -1074,7 +1074,7 @@ void ChatGui4::renderChatLog(Contact4 c, bool window_focused, const std::vector< ImGui::EndTable(); } - if (ImGui::Shortcut(ImGuiKey_End, ImGuiInputFlags_RouteGlobal)) { + if (ImGui::Shortcut(ImGuiKey_G | ImGuiMod_Shift, ImGuiInputFlags_RouteGlobal) || ImGui::Shortcut(ImGuiKey_End, ImGuiInputFlags_RouteGlobal)) { ImGui::SetScrollHereY(1.f); manually_scrolled = true; }