Fix ScaleDown scaling up

This commit is contained in:
LoipesMas 2021-11-26 20:57:16 +01:00 committed by GitHub
parent 6b3a00fc06
commit 4c514156b7
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 {