Fix ctrl-4

This commit is contained in:
Krzosa Karol
2026-02-03 20:06:56 +01:00
parent 830be12b24
commit 8cb1b49cd8

View File

@@ -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;
}
}
}