summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-07 00:18:30 +0000
committerB. Stack <bgstack15@gmail.com>2022-02-07 00:18:30 +0000
commit4cba562d787bfc92aeadbbc2ef199d4856523247 (patch)
tree374c62790fde0ce5514ef56750d0ff023d61b528 /wx+/file_drop.h
parentMerge branch 'b11.16' into 'master' (diff)
parent add upstream 11.17 (diff)
downloadFreeFileSync-4cba562d787bfc92aeadbbc2ef199d4856523247.tar.gz
FreeFileSync-4cba562d787bfc92aeadbbc2ef199d4856523247.tar.bz2
FreeFileSync-4cba562d787bfc92aeadbbc2ef199d4856523247.zip
Merge branch 'b11.17' into 'master'11.17
add upstream 11.17 See merge request opensource-tracking/FreeFileSync!41
Diffstat (limited to 'wx+/file_drop.h')
-rw-r--r--wx+/file_drop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h
index 68024091..16c2b519 100644
--- a/wx+/file_drop.h
+++ b/wx+/file_drop.h
@@ -18,7 +18,7 @@ namespace zen
{
/* register simple file drop event (without issue of freezing dialogs and without wxFileDropTarget overdesign)
CAVEAT: a drop target window must not be directly or indirectly contained within a wxStaticBoxSizer until the following wxGTK bug
- is fixed. According to wxWidgets release cycles this is expected to be: never https://trac.wxwidgets.org/ticket/2763
+ is fixed. According to wxWidgets release cycles this is expected to be: never https://github.com/wxWidgets/wxWidgets/issues/2763
1. setup a window to emit EVENT_DROP_FILE:
- simple file system paths: setupFileDrop
bgstack15