You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why is new_inner_size a mutable reference? That seems really weird
Why is it a reference at all? Why not just make it a value?
If there are no reasons, I'd like to make a PR to fix that... After all it will potentially make WindowEvent'static + Clone + Copy. Not only that. It seems like the whole Event struct will become Clone + 'static. Maybe even Copy!
The text was updated successfully, but these errors were encountered:
I've been looking through docs for
WindowEvent
and found the following definiton:I have several questions
new_inner_size
a mutable reference? That seems really weirdIf there are no reasons, I'd like to make a PR to fix that... After all it will potentially make
WindowEvent
'static + Clone + Copy
. Not only that. It seems like the wholeEvent
struct will becomeClone + 'static
. Maybe evenCopy
!The text was updated successfully, but these errors were encountered: