diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-08-23 09:57:25 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-08-23 09:57:25 +0800 |
commit | e27c0f7d1a89c33e7c81de58984c7fb043f102f6 (patch) | |
tree | a4c7af8b9108b897910f1fc96f01d175570f3204 /calendar/gui/dialogs | |
parent | d464c77c920ab042ac4c16caf78a4d5c02fb6681 (diff) | |
download | gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.gz gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.zst gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.zip |
Unset the priv->updating flag before returning in the case the component
2001-08-22 Federico Mena Quintero <federico@ximian.com>
* gui/dialogs/recurrence-page.c (recurrence_page_fill_widgets):
Unset the priv->updating flag before returning in the case the
component has no recurrence information. Fixes bug #6850.
svn path=/trunk/; revision=12413
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c index f06d8f76ec..586a291bfb 100644 --- a/calendar/gui/dialogs/recurrence-page.c +++ b/calendar/gui/dialogs/recurrence-page.c @@ -1449,6 +1449,8 @@ recurrence_page_fill_widgets (CompEditorPage *page, CalComponent *comp) sensitize_recur_widgets (rpage); preview_recur (rpage); + + priv->updating = FALSE; return; } |