diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-07-16 19:29:18 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-07-16 19:29:18 +0800 |
commit | 89ddfcd774cd6ec3865d42d827eecc07dbf940d0 (patch) | |
tree | d73981c1f9a74e875eeb369e18f7f033b91456e8 | |
parent | 33cd57f5458a6e80d0b6273f59ca6d59826e6ea7 (diff) | |
download | gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar.gz gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar.bz2 gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar.lz gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar.xz gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.tar.zst gsoc2013-evolution-89ddfcd774cd6ec3865d42d827eecc07dbf940d0.zip |
Reset the view when we set the model here. Fixes Ximian #4105.
2001-07-16 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-reflow.c (connect_model): Reset the view when we
set the model here. Fixes Ximian #4105.
svn path=/trunk/; revision=11124
-rw-r--r-- | widgets/misc/e-reflow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/misc/e-reflow.c b/widgets/misc/e-reflow.c index a2842f7f6f..ad414fd65e 100644 --- a/widgets/misc/e-reflow.c +++ b/widgets/misc/e-reflow.c @@ -439,6 +439,7 @@ connect_model (EReflow *reflow, EReflowModel *model) reflow->model_item_changed_id = gtk_signal_connect (GTK_OBJECT (reflow->model), "model_item_changed", GTK_SIGNAL_FUNC (item_changed), reflow); + model_changed (model, reflow); } static void |