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.
This commit is contained in:
parent
3d79ca5072
commit
d8852f1e54
|
@ -355,7 +355,6 @@ class Terminator(Borg):
|
||||||
if self.last_active_window:
|
if self.last_active_window:
|
||||||
window = self.find_window_by_uuid(self.last_active_window.urn)
|
window = self.find_window_by_uuid(self.last_active_window.urn)
|
||||||
window.present_with_time(t)
|
window.present_with_time(t)
|
||||||
window.set_focus()
|
|
||||||
self.prelayout_windows = None
|
self.prelayout_windows = None
|
||||||
|
|
||||||
def on_gtk_theme_name_notify(self, settings, prop):
|
def on_gtk_theme_name_notify(self, settings, prop):
|
||||||
|
|
Loading…
Reference in New Issue