Skip to content

Commit

Permalink
fixed order
Browse files Browse the repository at this point in the history
  • Loading branch information
arshavirmirzakhani committed Jan 9, 2025
1 parent cd780ac commit aeee4bf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/native/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,7 @@ impl WindowsDisplay {
new_height,
} => self.set_window_size(new_width as _, new_height as _),
SetWindowPosition { new_x, new_y } => self.set_window_position(new_x, new_y),
SetWindowIcon { new_icon } => set_icon(self.wnd, &new_icon),
SetFullscreen(fullscreen) => self.set_fullscreen(fullscreen),
ShowKeyboard(show) => {

Check warning on line 842 in src/native/windows.rs

View workflow job for this annotation

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unused variable: `show`

Check warning on line 842 in src/native/windows.rs

View workflow job for this annotation

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unused variable: `show`
eprintln!("Not implemented for windows")
Expand Down

0 comments on commit aeee4bf

Please sign in to comment.