summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-06 16:41:53 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-06 16:41:53 -0500
commitf6b6d222dc1a79c95f6756c707c5fcc3a785c030 (patch)
tree374c62790fde0ce5514ef56750d0ff023d61b528 /wx+/file_drop.h
parentadd upstream 11.16 (diff)
downloadFreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.tar.gz
FreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.tar.bz2
FreeFileSync-f6b6d222dc1a79c95f6756c707c5fcc3a785c030.zip
add upstream 11.17
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