From bb0c831601a4061fa75ed9c72d6d9e05a1d6bacc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 28 Jul 2021 18:22:08 +0530 Subject: [PATCH] Fix #3878 --- kitty/tabs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index 53d9a2ffb..aaed8ca0d 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -293,7 +293,8 @@ class Tab: # {{{ w = self.active_window if w is not None and self.resize_window_by( w.id, increment, is_horizontal) is not None: - ring_bell() + if get_options().enable_audio_bell: + ring_bell() def reset_window_sizes(self) -> None: '@ac:win:Reset window sizes undoing any dynamic resizing of windows'