summaryrefslogtreecommitdiff
path: root/wx+
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2017-04-20 17:05:29 -0600
committerDaniel Wilhelm <shieldwed@outlook.com>2017-04-20 17:05:29 -0600
commit94eeff901cb5f3d435840a662b4438c631127183 (patch)
tree7a4e7ed4627fb2ddfa3ef5176b7b35981b52c51f /wx+
parentnormalize most lineendings (diff)
downloadFreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.gz
FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.bz2
FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.zip
9.0
Diffstat (limited to 'wx+')
-rwxr-xr-xwx+/file_drop.h2
1 files changed, 1 insertions, 1 deletions
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<Zstring>& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) {}
+ FileDropEvent(const std::vector<Zstring>& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) { StopPropagation(); }
const std::vector<Zstring>& getPaths() const { return droppedPaths_; }
bgstack15