diff --git a/src/Dialog_Partition_Name.cc b/src/Dialog_Partition_Name.cc index e081583c..3cdfa74b 100644 --- a/src/Dialog_Partition_Name.cc +++ b/src/Dialog_Partition_Name.cc @@ -33,8 +33,8 @@ Dialog_Partition_Name::Dialog_Partition_Name( const Partition & partition, int m /* TO TRANSLATORS: dialog title, looks like Set partition name on /dev/hda3 */ this->set_title( Glib::ustring::compose( _("Set partition name on %1"), partition.get_path() ) ); - // HBox to hole the label and entry box line - Gtk::HBox *hbox( manage( new Gtk::HBox() ) ); + // Horizontal box to hold the label and entry box line + Gtk::Box *hbox(manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL))); hbox->set_border_width( 5 ); hbox->set_spacing( 10 ); get_vbox()->pack_start( *hbox, Gtk::PACK_SHRINK );