changed width of optionmenus from 150 to 160 pixels. (in certain langs the

* src/Dialog_Partition_New.cc: changed width of optionmenus from 150 to 160 pixels. (in certain langs the strings didn't fit)
* src/VBox_VisualDisk.cc: used/unused legend doesn't have to show up if there's only linux-swap.
This commit is contained in:
Bart Hakvoort 2004-10-18 10:52:55 +00:00
parent 053073ac2a
commit 3901d29ac8
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2004-10-18 Bart Hakvoort <gparted@users.sf.net>
* src/Dialog_Partition_New.cc: changed width of optionmenus from 150 to 160 pixels. (in certain langs the strings didn't fit)
* src/VBox_VisualDisk.cc: used/unused legend doesn't have to show up if there's only linux-swap.
2004-10-17 Bart Hakvoort <gparted@users.sf.net>
* src/Dialog_About.cc (Show_Credits): Fixed Gtk-Warning with unknown pango markup and placed a 5 pixel-border around

View File

@ -74,7 +74,7 @@ void Dialog_Partition_New::Set_Data( const Partition & partition, bool any_exten
}
optionmenu_type.set_menu( menu_type );
optionmenu_type.set_size_request( 150, -1 ); //150 is the ideal width for this table column, (when one widget is set, the rest wil take this width as well)
optionmenu_type.set_size_request( 160, -1 ); //160 is the ideal width for this table column, (when one widget is set, the rest wil take this width as well)
optionmenu_type.signal_changed().connect( sigc::bind<bool>(sigc::mem_fun(*this, &Dialog_Partition_New::optionmenu_changed), true) );
table_create.attach( optionmenu_type, 1,2,0,1,Gtk::FILL);

View File

@ -171,12 +171,12 @@ void VBox_VisualDisk::Build_Legend( )
this ->pack_start( hbox_legend_main );
std::vector<Glib::ustring> legende;
bool only_unallocated = true;
bool hide_used_unused = true;
for ( unsigned int i=0;i<partitions.size();i++ )
{
if ( partitions[i].type != GParted::UNALLOCATED && partitions[i].type != GParted::EXTENDED )
only_unallocated = false;
if ( partitions[i] .type != GParted::UNALLOCATED && partitions[i] .type != GParted::EXTENDED && partitions[i] .filesystem != "linux-swap" )
hide_used_unused = false;
if ( std::find( legende .begin(), legende .end(), partitions[i] .filesystem ) == legende .end() )
{
@ -195,7 +195,7 @@ void VBox_VisualDisk::Build_Legend( )
}
//if there are any partitions add used/unused
if ( ! only_unallocated )
if ( ! hide_used_unused )
{
frame_disk_legend = manage( new Gtk::Frame() ) ;
hbox_legend_main.pack_start( *frame_disk_legend, Gtk::PACK_EXPAND_PADDING );