linebender / xilem

An experimental Rust native UI framework
Apache License 2.0
3.71k stars 117 forks source link

Text selection panics in edge cases #514

Open PoignardAzur opened 3 months ago

PoignardAzur commented 3 months ago

You can make text selection panic by editing text quickly while a mouse selection is active.

(More details later am sleepy.)

DJMcNab commented 3 months ago

This is the common problem that properly handling each event requires there to be a layout pass in-between. We don't have enough context until Layout to even re-update our data structures.