only disallow drop on link_drop targets when there's no icon selected

SVN revision: 76624
This commit is contained in:
Mike Blumenkrantz 2012-09-13 17:01:55 +00:00
parent 57424d18a4
commit f7e3736068
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ _e_fm2_cb_dnd_drop(void *data)
}
else
allow = (sd->realpath && ecore_file_can_write(sd->realpath));
if (sd->config->view.link_drop) allow = EINA_FALSE;
if (sd->config->view.link_drop && (!sd->drop_icon)) allow = EINA_FALSE;
e_drop_xds_update(allow, sd->drop_icon ? buf : sd->realpath);
if (sd->dnd_scroller) ecore_animator_del(sd->dnd_scroller);
sd->dnd_scroller = NULL;