diff options
author | David Robillard <d@drobilla.net> | 2022-05-22 16:02:04 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-11-11 10:20:03 -0500 |
commit | 91ba4a52701db0a43ffc7769d2fda510ca2ebfa3 (patch) | |
tree | be2dca91d457f28e0c9c324736f24d85a5ed57c2 /src/common.c | |
parent | 91051e9059b67b8d633e385afb48a36d4f9467ba (diff) | |
download | pugl-dragdrop.tar.gz pugl-dragdrop.tar.bz2 pugl-dragdrop.zip |
[WIP] Add support for drag and dropdragdrop
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index 46b2f3d..a313eff 100644 --- a/src/common.c +++ b/src/common.c @@ -127,6 +127,7 @@ puglSetDefaultHints(PuglHints hints) hints[PUGL_IGNORE_KEY_REPEAT] = PUGL_FALSE; hints[PUGL_REFRESH_RATE] = PUGL_DONT_CARE; hints[PUGL_VIEW_TYPE] = PUGL_DONT_CARE; + hints[PUGL_ACCEPT_DROP] = PUGL_DONT_CARE; } PuglView* |