jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.18k stars 173 forks source link

Importing your Mutex and MutexGuard instead of std's Mutex/MutexGuard by accident #148

Closed AnthonyTornetta closed 1 year ago

AnthonyTornetta commented 1 year ago

I frequently use Mutexes and constantly run into weird issues that are caused by me accidentally importing your Mutex/MutexGuard (found in mutex.rs) instead of the std version. I don't see a reason why these have to be pub instead of pub(crate) which would eliminate this issue.

AnthonyTornetta commented 1 year ago

Just realized this was from epaint, not egui. My bad