Skip to content

Commit

Permalink
Fix the OS check for windows (#2832)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs authored Mar 23, 2023
1 parent 59c2c4c commit 089c7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui/src/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl OperatingSystem {
} else if cfg!(target_os = "macos") {
Self::Mac
} else if cfg!(target_os = "windows") {
Self::Android
Self::Windows
} else if cfg!(target_os = "linux")
|| cfg!(target_os = "dragonfly")
|| cfg!(target_os = "freebsd")
Expand Down

0 comments on commit 089c7b4

Please sign in to comment.