fixed alignments of cells in combo_devices

* src/Win_GParted.cc: fixed alignments of cells in combo_devices
This commit is contained in:
Bart Hakvoort 2005-12-30 18:11:03 +00:00
parent 3a4b43e0ad
commit 8fd8e31271
3 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2005-12-30 Bart Hakvoort <hakvoort@cvs.gnome.org>
* src/Win_GParted.cc: fixed alignments of cells in combo_devices
2005-12-30 Bart Hakvoort <hakvoort@cvs.gnome.org>
* include/Win_GParted.h,

View File

@ -174,9 +174,9 @@ void Win_GParted::init_toolbar( )
liststore_devices = Gtk::ListStore::create( treeview_devices_columns ) ;
combo_devices .set_model( liststore_devices ) ;
combo_devices .pack_start( treeview_devices_columns .icon ) ;
combo_devices .pack_start( treeview_devices_columns .icon, false ) ;
combo_devices .pack_start( treeview_devices_columns .device ) ;
combo_devices .pack_start( treeview_devices_columns .size ) ;
combo_devices .pack_start( treeview_devices_columns .size, false ) ;
combo_devices .signal_changed() .connect( sigc::mem_fun(*this, &Win_GParted::combo_devices_changed) );