From 94eeff901cb5f3d435840a662b4438c631127183 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Thu, 20 Apr 2017 17:05:29 -0600 Subject: 9.0 --- wx+/file_drop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wx+') diff --git a/wx+/file_drop.h b/wx+/file_drop.h index 35b7ca9e..526ee64d 100755 --- a/wx+/file_drop.h +++ b/wx+/file_drop.h @@ -39,7 +39,7 @@ extern const wxEventType EVENT_DROP_FILE; class FileDropEvent : public wxCommandEvent { public: - FileDropEvent(const std::vector& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) {} + FileDropEvent(const std::vector& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) { StopPropagation(); } const std::vector& getPaths() const { return droppedPaths_; } -- cgit