Focus after zooming (LP: #238046

This commit is contained in:
Nicolas Valcárcel 2008-06-07 03:06:26 -05:00
parent 4a74f74897
commit 2cc15d6607
1 changed files with 5 additions and 0 deletions

View File

@ -1559,6 +1559,8 @@ class Terminator:
self.old_parent.remove(widget)
self.window.add(widget)
self._zoomed = True
index = self.term_list.index (widget)
self.term_list[index]._vte.grab_focus ()
def unzoom_term (self, widget):
"""Proof of concept: Go back to previous application
@ -1572,6 +1574,9 @@ class Terminator:
self.old_parent.set_current_page(self.old_page)
print "\nPARENT IS A NOTEBOOK\n"
self._zoomed = False
index = self.term_list.index (widget)
self.term_list[index]._vte.grab_focus ()
return
else:
return