~bryce/gtg/launchpad-integration

« back to all changes in this revision

Viewing changes to GTG/taskbrowser/browser.py

  • Committer: Luca Invernizzi
  • Date: 2010-01-05 13:26:00 UTC
  • mfrom: (515.1.1 trunk)
  • Revision ID: invernizzi.l@gmail.com-20100105132600-r28vjsiak2gdfggf
When starting minimized, taskbrowser now shows the menu bar properly (fixes #502598)

ps:just learnt how to tag bzr commits with bug fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1679
1679
        # Restore state from config
1680
1680
        self.restore_state_from_conf()
1681
1681
        # Start minimized if the notification area plugin says so
1682
 
        if not (hasattr(self, "start_minimized") and \
1683
 
                        self.start_minimized == True):
 
1682
        if hasattr(self, "start_minimized") and self.start_minimized == True:
 
1683
            self.window.realize()
 
1684
        else:
1684
1685
            self.window.show()
1685
1686
        gtk.main()
1686
1687
        return 0