This commit is contained in:
Piotr Siuszko 2024-02-28 18:59:15 +01:00
parent cead07f3ab
commit 46ddbcea14
1 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,9 @@ pub struct ScrollViewport {
impl Default for ScrollViewport {
fn default() -> Self {
Self { scroll_speed: 500.0 }
Self {
scroll_speed: 500.0,
}
}
}