From 0adaf064e7de93838e1e2d6d563a793ddf29e658 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 5 Jul 2020 07:34:11 +0530 Subject: [PATCH] Fix #2832 --- kitty/window_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/window_list.py b/kitty/window_list.py index 1d9f66df6..3abc853d9 100644 --- a/kitty/window_list.py +++ b/kitty/window_list.py @@ -211,7 +211,7 @@ class WindowList: def iter_all_layoutable_groups(self, only_visible: bool = False) -> Iterator[WindowGroup]: return iter(g for g in self.groups if g.is_visible_in_layout) if only_visible else iter(self.groups) - def make_previous_group_active(self, which: int = 1, notify: bool = False) -> None: + def make_previous_group_active(self, which: int = 1, notify: bool = True) -> None: which = max(1, which) gid_map = {g.id: i for i, g in enumerate(self.groups)} num = len(self.active_group_history)