We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ef1131 + 7f581fd commit 6642786Copy full SHA for 6642786
terminatorlib/terminator.py
@@ -331,7 +331,8 @@ def layout_done(self):
331
# For windows without a notebook ensure Terminal is visible and focused
332
if window_last_active_term_mapping[window]:
333
term = self.find_terminal_by_uuid(window_last_active_term_mapping[window].urn)
334
- term.ensure_visible_and_focussed()
+ if term:
335
+ term.ensure_visible_and_focussed()
336
337
# Build list of new windows using prelayout list
338
new_win_list = []
0 commit comments