/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 viz/branchwin.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-29 10:06:50 UTC
  • Revision ID: jelmer@samba.org-20111129100650-9oit3f44pxre4uq8
Credit Curtis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
542
542
        dialog = SearchDialog(index)
543
543
 
544
544
        if dialog.run() == Gtk.ResponseType.OK:
545
 
            revid = dialog.get_revision()
546
 
            if revid is not None:
547
 
                self.set_revision(revid)
 
545
            self.set_revision(dialog.get_revision())
548
546
 
549
547
        dialog.destroy()
550
548