/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 olive/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2008-06-30 12:39:07 UTC
  • mto: This revision was merged to the branch mainline in revision 528.
  • Revision ID: jelmer@samba.org-20080630123907-pvny3atdtpbkjsno
Fix progress call arguments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
442
442
            # History Mode deactivated
443
443
            self.entry_history.set_sensitive(False)
444
444
            self.button_history.set_sensitive(False)
 
445
            
 
446
            # Return right window to normal view by acting like we jump to it
 
447
            self.on_button_location_jump_clicked(widget)
445
448
    
446
449
    @show_bzr_error
447
450
    def on_entry_history_revno_key_press_event(self, widget, event):
773
776
        else:
774
777
            branch = self.remote_branch
775
778
 
776
 
        window = branchwin.BranchWindow(branch, branch.last_revision(), None, parent=self.window)
 
779
        window = branchwin.BranchWindow(branch, [branch.last_revision()], None, 
 
780
                                        parent=self.window)
777
781
        window.show()
778
782
    
779
783
    def on_menuitem_view_refresh_activate(self, widget):