summaryrefslogtreecommitdiff
path: root/libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2013-11-05 17:00:48 +0100
committerRobby Workman <rworkman@slackbuilds.org>2013-11-06 00:57:21 -0600
commit7423152ca41ea24cdb567297e73ff943ba1eff3e (patch)
tree3a6e9aa32ce51c5b8c987ddde700c81be4a70d1b /libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch
parent59a7ed6157ef6ff4249e4c7b2a812b14cd474578 (diff)
downloadslackbuilds-7423152ca41ea24cdb567297e73ff943ba1eff3e.tar.gz
libraries/libfm: Updated for version 20131102_7e1f053.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch')
-rw-r--r--libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch b/libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch
deleted file mode 100644
index d14e9491bd..0000000000
--- a/libraries/libfm/patches/0010-3584798-We-shouldn-t-disable-DnD-on-non-native-targe.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 40aa4a6ae1531b189a25d373d642f5c7a1f7023d Mon Sep 17 00:00:00 2001
-From: Andriy Grytsenko <andrej@rep.kiev.ua>
-Date: Thu, 15 Nov 2012 05:50:44 +0200
-Subject: [PATCH 10/22] [#3584798]We shouldn't disable DnD on non-native
- targets completely.
-
-The handling dropping on non-native target should have some check
-but not denial as it was before. Let user get error message if
-dropping failed for now and do some other checks later.
----
- src/gtk/fm-dnd-dest.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/gtk/fm-dnd-dest.c b/src/gtk/fm-dnd-dest.c
-index 21cf2c0..371e5f6 100644
---- a/src/gtk/fm-dnd-dest.c
-+++ b/src/gtk/fm-dnd-dest.c
-@@ -811,12 +811,16 @@ query_sources:
- else /* files inside trash are read only */
- action = 0;
- }
-+#if 0
-+ /* bug #3584798: DnD(copy/move) to remote host(SFTP://) does not work.
-+ we should do some check if target FS is R/O instead of this */
- else if(!fm_path_is_native(dest_path))
- {
- /* computer:/// and network:/// shouldn't received dropped files. */
- /* FIXME: some special handling can be done with menu:// */
- action = 0;
- }
-+#endif
- else /* dest is a ordinary path */
- {
- /* determine if the dragged files are on the same device as destination file */
---
-1.8.0.1
-