diff --git a/ChangeLog b/ChangeLog index 54374af0a7..62f580077b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-05 Michael Natterer + + * app/widgets/gimppropwidgets.c (gimp_prop_table_new): don't forget + the label for entry widgets. + 2008-02-05 Martin Nordholts Applied patch from Olof Frahm which makes loading of data diff --git a/app/widgets/gimppropwidgets.c b/app/widgets/gimppropwidgets.c index 9b112cba1f..e7546f675c 100644 --- a/app/widgets/gimppropwidgets.c +++ b/app/widgets/gimppropwidgets.c @@ -755,6 +755,7 @@ gimp_prop_table_new (GObject *config, if (G_IS_PARAM_SPEC_STRING (pspec)) { widget = gimp_prop_entry_new (config, pspec->name, -1); + label = g_param_spec_get_nick (pspec); } else if (G_IS_PARAM_SPEC_BOOLEAN (pspec)) {