~mmcg069/software-center/reviews-and-netstatus

« back to all changes in this revision

Viewing changes to software-center

  • Committer: Matthew McGowan
  • Date: 2011-01-21 21:45:18 UTC
  • mfrom: (1354.2.56 trunk)
  • Revision ID: matthew.joseph.mcgowan@gmail.com-20110121214518-z1a23pr59zruo6y3
merge w trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
    # DEBUG/PROFILE mode 
112
112
    if options.measure_startup_time:
113
113
        with ExecutionTime("show() & gtk events until visible"):
114
 
            app.window_main.show_all()
 
114
#            app.window_main.show_all()
115
115
            while gtk.events_pending():
116
116
                # test visible area
117
117
                if (app.window_main.flags() & gtk.VISIBLE and
118
 
                    app.available_pane.cat_view.flags() & gtk.VISIBLE and
119
 
                    app.available_pane.searchentry.flags() & gtk.VISIBLE):
 
118
                    app.available_pane.searchentry.flags() & gtk.VISIBLE and
 
119
                    app.available_pane.back_forward.flags() & gtk.VISIBLE):
120
120
                    break
121
121
                gtk.main_iteration()
122
122
        time_to_visible = time.time() - time_entering_main