mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 21:31:29 +11:00
Merge pull request #206 from tomaka/non-mutable-set-cursor
Change &mut self to &self in set_cursor
This commit is contained in:
commit
f1ec5db585
|
@ -618,7 +618,7 @@ impl Window {
|
|||
|
||||
/// Modifies the mouse cursor of the window.
|
||||
/// Has no effect on Android.
|
||||
pub fn set_cursor(&mut self, cursor: MouseCursor) {
|
||||
pub fn set_cursor(&self, cursor: MouseCursor) {
|
||||
self.window.set_cursor(cursor);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue