aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-log-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r--libempathy-gtk/empathy-log-window.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 56b5e0c45..8bb92b82e 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -774,6 +774,12 @@ static void
log_window_chats_changed_cb (GtkTreeSelection *selection,
EmpathyLogWindow *window)
{
+ gboolean selected;
+
+ /* The calendar has to be sensitive only if there is something selected */
+ selected = log_window_chats_get_selected (window, NULL, NULL);
+ gtk_widget_set_sensitive (window->calendar_chats, selected);
+
/* Use last date by default */
gtk_calendar_clear_marks (GTK_CALENDAR (window->calendar_chats));
@@ -981,6 +987,9 @@ log_window_chats_accounts_changed_cb (GtkWidget *combobox,
empathy_chat_view_clear (window->chatview_chats);
log_window_chats_populate (window);
+
+ /* No chat is selected as we just changed the account */
+ gtk_widget_set_sensitive (window->calendar_chats, FALSE);
}
static void