diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-08 12:40:50 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-08 12:40:50 +0800 |
commit | 640ba8bb01547602e1d9cac4730b9f40e8af280d (patch) | |
tree | 8b8828db873618cee8ba945a4a0196573b859e33 | |
parent | 7bf045d23d54626139eb3305dc9a350088899545 (diff) | |
download | gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar.gz gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar.bz2 gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar.lz gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar.xz gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.tar.zst gsoc2013-evolution-640ba8bb01547602e1d9cac4730b9f40e8af280d.zip |
Committing Johnny's patch.
svn path=/trunk/; revision=31441
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index aaca8b341f..17cc224656 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2006-02-01 Johnny Jacob <johnnyjacob@gmail.com> + + ** Fixes #326997 + * gui/dialogs/event-page.c (sensitize_widgets): + set/unset the editability of description. + 2006-01-17 Ranjan Somani <sranjan@novell.com> ** Fixes #322009 diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 5c25ba4b38..a714ef9310 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -815,7 +815,7 @@ sensitize_widgets (EventPage *epage) gtk_widget_set_sensitive (priv->start_timezone, sensitize); gtk_widget_set_sensitive (priv->end_time, sensitize); gtk_widget_set_sensitive (priv->end_timezone, sensitize); - gtk_widget_set_sensitive (priv->description, sensitize); + gtk_text_view_set_editable (GTK_TEXT_VIEW (priv->description), sensitize); gtk_widget_set_sensitive (priv->alarm_time, !read_only); gtk_widget_set_sensitive (priv->categories_btn, sensitize); /*TODO implement the for portion of the end time selector */ |