summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.c
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-01-04 16:59:22 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-01-04 17:28:55 +0100
commit082c5c19a1efe3c450f1ad1b0411d335be88e60e (patch)
tree37f3eb64aee2285295c0c87bfae0e80a79f7d0e8 /video/out/x11_common.c
parentbb3ea1580ebb9715ad5cc8829fcbe556c87db66e (diff)
downloadmpv-082c5c19a1efe3c450f1ad1b0411d335be88e60e.tar.bz2
mpv-082c5c19a1efe3c450f1ad1b0411d335be88e60e.tar.xz
input: move files drag and drop to a new event.c file
event.c will be used to feed the input queue with 'global' events that don't mesh well with the usual check_events path in mpv.
Diffstat (limited to 'video/out/x11_common.c')
-rw-r--r--video/out/x11_common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index 2e8b0917ac..a48c3f6e0e 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -27,6 +27,7 @@
#include "options/options.h"
#include "common/msg.h"
#include "input/input.h"
+#include "input/event.h"
#include "libavutil/common.h"
#include "x11_common.h"
#include "talloc.h"
@@ -749,7 +750,7 @@ static bool dnd_handle_drop_data(struct vo *vo, bstr data)
char *s = bstrto0(tmp, line);
MP_TARRAY_APPEND(tmp, files, num_files, s);
}
- vo_drop_files(vo, num_files, files);
+ mp_event_drop_files(vo->input_ctx, num_files, files);
talloc_free(tmp);
return num_files > 0;
}