Skip to content

Commit 0f0347e

Browse files
committed
Fix straggling in_base_set case
1 parent e8abe98 commit 0f0347e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_window/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl Plugin for WindowPlugin {
102102
}
103103

104104
if self.close_when_requested {
105-
app.add_system(close_when_requested.in_set(CoreSet::PostUpdate));
105+
app.add_system(close_when_requested.in_base_set(CoreSet::PostUpdate));
106106
}
107107

108108
// Register event types

0 commit comments

Comments
 (0)