From d8852f1e5447c1dfe53b049bbb1f058ec988e819 Mon Sep 17 00:00:00 2001 From: Vulcalien Date: Sat, 11 Mar 2023 12:48:20 +0100 Subject: [PATCH] Do not remove focus from the last_active_window This caused all the new windows to be unfocused, forcing the user to manually focus one. The 'last_active_window' feature might be broken anyway. --- terminatorlib/terminator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index bf0a4535..db3f465f 100644 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -355,7 +355,6 @@ class Terminator(Borg): if self.last_active_window: window = self.find_window_by_uuid(self.last_active_window.urn) window.present_with_time(t) - window.set_focus() self.prelayout_windows = None def on_gtk_theme_name_notify(self, settings, prop):