diff options
Diffstat (limited to 'src/Fl_Input.cxx')
| -rw-r--r-- | src/Fl_Input.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx index 9dcc0eed8..a7232117e 100644 --- a/src/Fl_Input.cxx +++ b/src/Fl_Input.cxx @@ -678,7 +678,12 @@ int Fl_Input::handle(int event) { dnd_save_mark = mark(); dnd_save_focus = this; // drag the data: - copy(0); Fl::dnd(); + copy(0); +#ifdef __APPLE__ + Fl_X::dnd(1); +#else + Fl::dnd(); +#endif return 1; } } |
