diff options
| author | Manolo Gouy <Manolo> | 2015-01-28 17:05:29 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2015-01-28 17:05:29 +0000 |
| commit | 64ffd414d6bbe05be33e7a6a1cf6028d5d883be6 (patch) | |
| tree | 70bd2423eb64ab3ce3d4cd819d0532733c81b203 /src/Fl_Input.cxx | |
| parent | b8b89178da6a1e0b6a555e9c463fc8c8bb0f8bd9 (diff) | |
Stop using dynamic_cast when performing text drag (Mac OS only).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10536 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
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; } } |
