Merge pull request #422 from LoipesMas/patch-1
[Anvil] Fix ScaleDown scaling up
This commit is contained in:
commit
9ba03c7675
|
@ -197,7 +197,7 @@ impl<Backend> AnvilState<Backend> {
|
||||||
|
|
||||||
self.output_map
|
self.output_map
|
||||||
.borrow_mut()
|
.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 {
|
action => match action {
|
||||||
|
|
Loading…
Reference in New Issue