From d6d9cce90cc01c4b1b75ff97f248cb3baab62f47 Mon Sep 17 00:00:00 2001 From: Matthew Rose Date: Tue, 28 Feb 2023 22:32:14 -0500 Subject: [PATCH] should not commit this late at night. --- terminatorlib/terminator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index 184bf12f..0fb65660 100644 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -309,6 +309,7 @@ class Terminator(Borg): """Layout operations have finished, record that fact""" self.doing_layout = False maker = Factory() + t = 0 window_last_active_term_mapping = {} for window in self.windows: @@ -350,7 +351,7 @@ class Terminator(Borg): # last_active_window is focussed. if self.last_active_window: window = self.find_window_by_uuid(self.last_active_window.urn) - window.present_with_time(0) + window.present_with_time(t) window.set_focus() self.prelayout_windows = None