We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 167236d commit ebd01d7Copy full SHA for ebd01d7
bevy_replicon_example_backend/examples/simple_button.rs
@@ -200,7 +200,7 @@ struct UiRoot;
200
align_items: AlignItems::Center,
201
..Default::default()
202
},
203
- BorderColor(Color::WHITE),
+ BorderColor::all(Color::WHITE),
204
BorderRadius::MAX,
205
)]
206
struct ToggleButton(bool);
bevy_replicon_example_backend/examples/tic_tac_toe.rs
@@ -22,7 +22,7 @@ fn main() {
22
DefaultPlugins.build().set(WindowPlugin {
23
primary_window: Some(Window {
24
title: "Tic-Tac-Toe".into(),
25
- resolution: (800.0, 600.0).into(),
+ resolution: (800, 600).into(),
26
27
}),
28
0 commit comments