From ef76974ffc0dd2142a667ef54045f80008248a9b Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Wed, 28 Nov 2012 04:11:33 +0000 Subject: [PATCH] lets not break dnd onto dirs.. within the same efm view. SVN revision: 79763 --- src/bin/e_fm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index ac5124294..b76709501 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -6414,7 +6414,7 @@ _e_fm2_cb_dnd_selection_notify(void *data, const char *type, void *event) fsel = e_fm2_uri_path_list_get(ev->data); fp = eina_list_data_get(fsel); - if (fp && sd->realpath) + if (fp && sd->realpath && ((sd->drop_all) || (!sd->drop_icon))) { const char *f; @@ -6434,7 +6434,7 @@ _e_fm2_cb_dnd_selection_notify(void *data, const char *type, void *event) } } } - + isel = _e_fm2_uri_icon_list_get(fsel); if (!isel) return; ox = 0; oy = 0;