/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: Vincent Geddes
  • Date: 2008-07-08 21:40:38 UTC
  • mto: This revision was merged to the branch mainline in revision 532.
  • Revision ID: vincent.geddes@gmail.com-20080708214038-idg75z1ucp6m5aol
Improved visual appeal of gstatus dialog.

* status.py:
  - Adjust border and spacing sizes on dialog.
  - "OK" button is a now a "Close" button.

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):
1485
1489
        
1486
1490
        driveletters = []
1487
1491
        for drive in string.ascii_uppercase:
1488
 
            if win32file.GetDriveType(drive+':') == win32file.DRIVE_FIXED:
 
1492
            if win32file.GetDriveType(drive+':') == win32file.DRIVE_FIXED or\
 
1493
                win32file.GetDriveType(drive+':') == win32file.DRIVE_REMOTE:
1489
1494
                driveletters.append(drive+':')
1490
1495
        return driveletters
1491
1496