From 01c54a1b0b89b139ae8bf62edaf952b54ad5bdf8 Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Wed, 10 Jun 2009 17:25:23 +0300 Subject: [PATCH] Make HildonEntry:size a G_PARAM_CONSTRUCT property * hildon/hildon-entry.c (hildon_entry_class_init): Make HildonEntry:size a G_PARAM_CONSTRUCT property, to allow the default size to be set. Fixes: NB#117931 (Theming issues in accounts dialogs) --- ChangeLog | 7 +++++++ hildon/hildon-entry.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5388038..3c51be8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-06-10 Claudio Saavedra + + * hildon/hildon-entry.c (hildon_entry_class_init): Make HildonEntry:size + a G_PARAM_CONSTRUCT property, to allow the default size to be set. + + Fixes: NB#117931 (Theming issues in accounts dialogs) + 2009-06-09 Alejandro G. Castro * hildon/hildon-pannable-area.c, diff --git a/hildon/hildon-entry.c b/hildon/hildon-entry.c index 40da60e..58066c2 100644 --- a/hildon/hildon-entry.c +++ b/hildon/hildon-entry.c @@ -265,7 +265,7 @@ hildon_entry_class_init (HildonEntryClass *klass) "Size request for the entry", HILDON_TYPE_SIZE_TYPE, HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT, - G_PARAM_WRITABLE)); + G_PARAM_CONSTRUCT | G_PARAM_WRITABLE)); g_type_class_add_private (klass, sizeof (HildonEntryPrivate)); } -- 1.7.9.5