/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 revisionview.py

  • Committer: Daniel Schierbeck
  • Date: 2007-12-06 23:45:31 UTC
  • mto: This revision was merged to the branch mainline in revision 417.
  • Revision ID: daniel.schierbeck@gmail.com-20071206234531-fc237lo63xxqu0pk
Fixed bug in the way the child buttons worked.

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
 
249
249
            button = gtk.Button(revid)
250
250
            button.connect("clicked",
251
 
                    lambda w, r: self.set_revision(self._branch.repository.get_revision(revid)), revid)
 
251
                    lambda w, r: self.set_revision(self._branch.repository.get_revision(r)), revid)
252
252
            button.set_use_underline(False)
253
253
            hbox.pack_start(button, expand=False, fill=True)
254
254
            button.show()