Skip to content

Commit

Permalink
add missing type registration for Monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Dec 6, 2024
1 parent 5b1f0b1 commit ffe1802
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/bevy_window/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ impl Plugin for WindowPlugin {
.register_type::<FileDragAndDrop>()
.register_type::<WindowMoved>()
.register_type::<WindowThemeChanged>()
.register_type::<AppLifecycle>();
.register_type::<AppLifecycle>()
.register_type::<Monitor>();

// Register window descriptor and related types
app.register_type::<Window>()
Expand Down

0 comments on commit ffe1802

Please sign in to comment.