mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
I introduced this in #5433. TL;DR: there are two termination conditions for drag-and-drop operations: - ESC - release mouse The former _must_ happen at frame start (to properly capture the keystroke). The latter _must_ happen at end-of-frame (to _not_ shadow the mouse release event from user code). This is now properly documented.