Skip to content

Commit

Permalink
Update Egui to 0.21 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-hansen authored Feb 18, 2023
1 parent 130f40d commit 65f3750
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Update Egui to 0.21

## [0.19.0] - 15-Jan-2023

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default_fonts = ["egui/default_fonts"]

[dependencies]
bevy = { version = "0.9.0", default-features = false, features = ["bevy_render", "bevy_core_pipeline", "bevy_asset"] }
egui = { version = "0.20.0", default-features = false, features = ["bytemuck"] }
egui = { version = "0.21.0", default-features = false, features = ["bytemuck"] }
webbrowser = { version = "0.8.2", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
1 change: 1 addition & 0 deletions src/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ pub fn process_input_system(
let egui_event = egui::Event::Key {
key,
pressed,
repeat: false,
modifiers,
};
focused_input.events.push(egui_event);
Expand Down

0 comments on commit 65f3750

Please sign in to comment.