Merge pull request #422 from LoipesMas/patch-1

[Anvil] Fix ScaleDown scaling up
This commit is contained in:
Victoria Brekenfeld 2021-11-26 22:09:52 +01:00 committed by GitHub
commit 9ba03c7675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ impl<Backend> AnvilState<Backend> {
self.output_map
.borrow_mut()
.update_scale_by_name(f32::max(1.0f32, current_scale + 0.25f32), output_name);
.update_scale_by_name(f32::max(1.0f32, current_scale - 0.25f32), output_name);
}
action => match action {