aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/memo-page.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 1ba6e1e857..22b7d64921 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2006-09-01 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #353763
+ * gui/dialogs/memo-page.c: (sensitize_widgets):
+ set sens to TRUE if its not a shared memo.
+
2006-08-30 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #344463
diff --git a/calendar/gui/dialogs/memo-page.c b/calendar/gui/dialogs/memo-page.c
index 38df8901d0..487bfcce02 100644
--- a/calendar/gui/dialogs/memo-page.c
+++ b/calendar/gui/dialogs/memo-page.c
@@ -293,6 +293,8 @@ sensitize_widgets (MemoPage *mpage)
if (COMP_EDITOR_PAGE (mpage)->flags & COMP_EDITOR_IS_SHARED)
sens = COMP_EDITOR_PAGE (mpage)->flags & COMP_EDITOR_PAGE_USER_ORG;
+ else
+ sens = TRUE;
sensitize = (!read_only && sens);