diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/memo-page.c | 2 |
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); |