From 8cb1b49cd8f3591a090bcd2a52bed0281e899473 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Tue, 3 Feb 2026 20:06:56 +0100 Subject: [PATCH] Fix ctrl-4 --- src/text_editor/plugin_window_management.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text_editor/plugin_window_management.cpp b/src/text_editor/plugin_window_management.cpp index 5d0cc3f..bb2640f 100644 --- a/src/text_editor/plugin_window_management.cpp +++ b/src/text_editor/plugin_window_management.cpp @@ -57,7 +57,7 @@ void CMD_FocusWindow4() { Window *third = GetOverlappingWindow(GetSideOfWindow(second, DIR_RIGHT)); if (third) { Window *fourth = GetOverlappingWindow(GetSideOfWindow(third, DIR_RIGHT)); - if (fourth) NextActiveWindowID = third->id; + if (fourth) NextActiveWindowID = fourth->id; } } }