diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-04-09 03:39:53 +0200 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-04-26 16:54:27 +0200 |
commit | e1d7563733075cd0302951db45b645bee9f71cdb (patch) | |
tree | f77efba757166d259cc8d80a142263bdd678d364 /libnautilus-private/nautilus-file-conflict-dialog.c | |
parent | 33da32efab246804efb745c0f9c63d88574cf5d0 (diff) | |
download | nautilus-e1d7563733075cd0302951db45b645bee9f71cdb.tar.gz |
Reverse broken logic.
Diffstat (limited to 'libnautilus-private/nautilus-file-conflict-dialog.c')
-rw-r--r-- | libnautilus-private/nautilus-file-conflict-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnautilus-private/nautilus-file-conflict-dialog.c b/libnautilus-private/nautilus-file-conflict-dialog.c index ad086e7c1..e8d8625d4 100644 --- a/libnautilus-private/nautilus-file-conflict-dialog.c +++ b/libnautilus-private/nautilus-file-conflict-dialog.c @@ -112,7 +112,7 @@ file_list_ready_cb (GList *files, dest_is_dir = nautilus_file_is_directory (dest); type = nautilus_file_get_mime_type (dest); - should_show_type = nautilus_file_is_mime_type (src, type); + should_show_type = !nautilus_file_is_mime_type (src, type); g_free (type); type = NULL; |