Comment 5 for bug 932580

Revision history for this message
Takkat (takkat-nebuk) wrote : Re: [Bug 932580] Re: Application window not responsive when iconified on execution from autostart

yeah the issue still exists in both, gtk2 and gtk3 tested on 12.04 (gtk
2.24.10 and 3.4.2), and 13.10. (gtk 2.24.20 and 3.8.2).

The issue now is consistent, i.e. not only when run from autostart as
stated above.

Test case:

#!/usr/bin/python
from gi.repository import Gtk as gtk
# import gtk

window = gtk.Window()
window.connect("delete-event", gtk.main_quit)
window.show_all()
window.iconify()
# window.deiconify()
gtk.main()

1. On 12.04 we can not open the window from the Launcher icon.
2. On 13.10 we are able to deiconify from the Launcher as expected.
3. If we called deiconify() from the app the window will have no
decoration (12.04 and 13.10)