diff --git a/include/DialogFeatures.h b/include/DialogFeatures.h index 5f63450f..475a39eb 100644 --- a/include/DialogFeatures.h +++ b/include/DialogFeatures.h @@ -21,7 +21,7 @@ #include "../include/Utils.h" #include -#include +#include #include #include #include @@ -40,7 +40,7 @@ public: private: void show_filesystem( const FS & fs ) ; - Gtk::Expander expander_legend ; + Gtk::Frame legend_frame ; Gtk::TreeView treeview_filesystems; Gtk::TreeRow treerow; Glib::RefPtr liststore_filesystems; diff --git a/src/DialogFeatures.cc b/src/DialogFeatures.cc index 751074da..6ce63e7a 100644 --- a/src/DialogFeatures.cc +++ b/src/DialogFeatures.cc @@ -119,10 +119,10 @@ DialogFeatures::DialogFeatures() str_temp = "" ; str_temp += _("Legend") ; str_temp += "" ; - expander_legend .set_label( str_temp ) ; - expander_legend .set_use_markup( true ) ; - expander_legend .add( *legend_hbox ) ; - this ->get_vbox() ->pack_start( expander_legend, Gtk::PACK_SHRINK ) ; + legend_frame .set_label_widget( *Utils::mk_label( str_temp ) ) ; + legend_frame .set_shadow_type( Gtk::SHADOW_NONE ) ; + legend_frame .add( *legend_hbox ) ; + this ->get_vbox() ->pack_start( legend_frame, Gtk::PACK_SHRINK ) ; /*TO TRANSLATORS: This is a button that will search for the software tools installed and then refresh the screen with the file system actions supported. */ add_button( _("Rescan For Supported Actions"), Gtk::RESPONSE_OK );