/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: 2007-07-15 16:39:21 UTC
  • Revision ID: jelmer@samba.org-20070715163921-ydeemssii7wxy06i
Initial work towards supporting multiple revisions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
    def _treeview_row_mouseclick(self, widget, event):
263
263
        from bzrlib.plugins.gtk.revisionmenu import RevisionPopupMenu
264
264
        if event.button == 3:
265
 
            # FIXME: Support multiple revisions
266
265
            menu = RevisionPopupMenu(self.branch.repository, 
267
 
                                     self.selected_revisions()[0].revision_id, 
268
 
                                     self.branch)
 
266
                [x.revision_id for x in self.selected_revisions()],
 
267
                self.branch)
269
268
            menu.popup(None, None, None, event.button, event.get_time())
270
269
 
271
270
    def selected_revision(self, path):