mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 14:50:03 -04:00
Better docs and spelling fixes
This commit is contained in:
@@ -454,12 +454,10 @@ impl State {
|
||||
}
|
||||
};
|
||||
if cfg!(target_os = "macos") {
|
||||
// This is still buggy in winit despite
|
||||
// https://github.com/rust-windowing/winit/issues/1695 being closed
|
||||
delta.x *= -1.0;
|
||||
delta.x *= -1.0; // until https://github.com/rust-windowing/winit/pull/2105 is merged and released
|
||||
}
|
||||
if cfg!(target_os = "windows") {
|
||||
delta.x *= -1.0; // until https://github.com/rust-windowing/winit/pull/2101 is merged
|
||||
delta.x *= -1.0; // until https://github.com/rust-windowing/winit/pull/2101 is merged and released
|
||||
}
|
||||
|
||||
if self.egui_input.modifiers.ctrl || self.egui_input.modifiers.command {
|
||||
|
||||
Reference in New Issue
Block a user