/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: Szilveszter Farkas (Phanatic)
  • Date: 2007-05-16 08:58:24 UTC
  • mto: (195.1.7 trunk)
  • mto: This revision was merged to the branch mainline in revision 199.
  • Revision ID: szilveszter.farkas@gmail.com-20070516085824-ec239a2gbdus3kef
The Windows drive selector was moved to the location bar.

Cleaned up setup.py a bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
        self.combobox_drive.connect("changed", self._refresh_drives)
111
111
        
112
112
        # Get the navigation widgets
 
113
        self.hbox_location = self.toplevel.get_widget('hbox_location')
113
114
        self.button_location_up = self.toplevel.get_widget('button_location_up')
114
115
        self.button_location_jump = self.toplevel.get_widget('button_location_jump')
115
116
        self.entry_location = self.toplevel.get_widget('entry_location')
186
187
        
187
188
        # Show drive selector if under Win32
188
189
        if sys.platform == 'win32':
189
 
            self.vbox_main_right.pack_start(self.combobox_drive, False, True, 0)
190
 
            self.vbox_main_right.reorder_child(self.combobox_drive, 0)
 
190
            self.hbox_location.pack_start(self.combobox_drive, False, False, 0)
 
191
            self.hbox_location.reorder_child(self.combobox_drive, 1)
191
192
            self.combobox_drive.show()
192
193
            self.gen_hard_selector()
193
194