fluxxcode / egui-file-dialog

Full featured and customizable file dialog for egui
MIT License
78 stars 10 forks source link

FileDialog is not Send #130

Closed nat3Github closed 3 months ago

nat3Github commented 3 months ago

File Dialog doesnt implement the Send Bound. this is not a bug but limiting the use of FileDialog. Not beeing Send means that it can not be used in a Mutex or across multiple threads.

I found this restriction unnecessaryly strict and changed it. this only required a few trait bounds to be changed, nothing else in the source code.

please feel free to merge this request.

nat3Github commented 3 months ago

i made a small mistake will open a new pr