/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to ui.py

  • Committer: Curtis Hovey
  • Date: 2011-08-13 01:12:20 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110813011220-qj1u0dvft7jk0x6m
Updated gpush to gtk3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        self.pb = GtkProgressBar()
115
115
        self.set_spacing(5)
116
116
        self.set_border_width(5)
117
 
        self.pack_start(image_loading, False, False, 0)
118
 
        self.pack_start(self.pb, True, True, 0)
 
117
        self.pack_start(image_loading, False, False)
 
118
        self.pack_start(self.pb, True, True)
119
119
 
120
120
    def tick(self, *args, **kwargs):
121
121
        self.show_all()
127
127
 
128
128
    def finished(self):
129
129
        self.pb.finished()
130
 
        self.hide()
 
130
        self.hide_all()
131
131
 
132
132
    def clear(self):
133
133
        self.pb.clear()
134
 
        self.hide()
 
134
        self.hide_all()
135
135
 
136
136
 
137
137
class PasswordDialog(Gtk.Dialog):