Skip to content

Commit

Permalink
Fix straggling in_base_set case
Browse files Browse the repository at this point in the history
  • Loading branch information
cart committed Feb 6, 2023
1 parent ef68781 commit 65ff092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_window/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl Plugin for WindowPlugin {
}

if self.close_when_requested {
app.add_system(close_when_requested.in_set(CoreSet::PostUpdate));
app.add_system(close_when_requested.in_base_set(CoreSet::PostUpdate));
}

// Register event types
Expand Down

0 comments on commit 65ff092

Please sign in to comment.