Fix lack of focus on unhide with patch from Pavel Khlebovich. Closes LP#805870

This commit is contained in:
Stephen Boddy 2013-09-04 23:02:24 +02:00
parent e071ad23cf
commit e0a90ab670
1 changed files with 6 additions and 0 deletions

View File

@ -304,6 +304,12 @@ class Window(Container, gtk.Window):
if self.position:
self.move(self.position[0], self.position[1])
self.show()
self.grab_focus()
try:
t = gtk.gdk.x11_get_server_time(self.window)
except AttributeError:
t = 0
self.window.focus(t)
else:
self.position = self.get_position()
self.hidefunc()