diff options
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 6b8d8a4984..4fdb6ed69f 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -131,7 +131,7 @@ create_view (EvolutionShellComponent *shell_component, CamelURL *url; url = camel_url_new (physical_uri, NULL); - if (url && !g_strcasecmp (camel_url_get_param (url, "noselect"), "yes")) + if (url && g_strcasecmp (camel_url_get_param (url, "noselect"), "yes")) control = create_noselect_control (); else control = folder_browser_factory_new_control (physical_uri, |