diff options
author | Milan Crha <mcrha@redhat.com> | 2011-08-26 16:56:37 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-08-26 16:56:37 +0800 |
commit | 4c7a93d9fd2b08db22a00bcf2477c3b0b87f4da6 (patch) | |
tree | cf3140c933c9a0eecd230de11b1fbf7c2d824f57 | |
parent | af690e79a1c7ec7caa2f9c661bd1bd3f709a3e30 (diff) | |
download | gsoc2013-evolution-4c7a93d9fd2b08db22a00bcf2477c3b0b87f4da6.tar.gz gsoc2013-evolution-4c7a93d9fd2b08db22a00bcf2477c3b0b87f4da6.tar.zst gsoc2013-evolution-4c7a93d9fd2b08db22a00bcf2477c3b0b87f4da6.zip |
Bug #655549 - [mail-to-task] Ignores cancel of source select dialog
-rw-r--r-- | plugins/mail-to-task/mail-to-task.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c index 1ac7652d40..56da9efa7e 100644 --- a/plugins/mail-to-task/mail-to-task.c +++ b/plugins/mail-to-task/mail-to-task.c @@ -1096,6 +1096,8 @@ mail_to_event (ECalClientSourceType source_type, if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) source = e_source_selector_dialog_peek_primary_selection (E_SOURCE_SELECTOR_DIALOG (dialog)); + else + source = NULL; gtk_widget_destroy (dialog); } else if (!source && default_source) { |