From cb8ce9caea881648faef8378c4009b1262eaeb1d Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Fri, 24 Jan 2014 19:57:53 +0000 Subject: [PATCH] Indent File System Support legend narrative (#342682) Use padding to indent the legend narrative to better show hierarchy and association with the "Legend" category as recommended in the: GNOME HIG 2.2.3 / Visual Design / Window Layout https://developer.gnome.org/hig-book/stable/design-window.html.en Padding the legend narrative widget also deliberately increases the spacing to the legend icons too. Bug #342682 - too much information in 'features' dialog --- src/DialogFeatures.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DialogFeatures.cc b/src/DialogFeatures.cc index 6ce63e7a..10f5fc79 100644 --- a/src/DialogFeatures.cc +++ b/src/DialogFeatures.cc @@ -72,7 +72,7 @@ DialogFeatures::DialogFeatures() str_temp += "\n" ; str_temp += _("Not all actions are available on all file systems, in part due to the nature of file systems and limitations in the required software.") ; legend_narrative_hbox ->pack_start( *Utils::mk_label( str_temp, true, true ), Gtk::PACK_SHRINK ) ; - legend_hbox ->pack_start( *legend_narrative_hbox ) ; + legend_hbox ->pack_start( *legend_narrative_hbox, Gtk::PACK_EXPAND_WIDGET, 6 ) ; //icon legend Gtk::VBox *icon_legend_vbox( manage( new Gtk::VBox() ) ) ;