Skip to content

Commit

Permalink
Set minimum scale to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OliBomby committed Oct 1, 2024
1 parent 08e1698 commit 0695d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Osu/Edit/PreciseScalePopover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private void updateMaxScale()
if (!scaleHandler.OriginalSurroundingQuad.HasValue)
return;

const float min_scale = -10;
const float min_scale = 0.5f;
const float max_scale = 10;

var scale = scaleHandler.ClampScaleToPlayfieldBounds(new Vector2(max_scale), getOriginPosition(scaleInfo.Value), getAdjustAxis(scaleInfo.Value), getRotation(scaleInfo.Value));
Expand Down

0 comments on commit 0695d51

Please sign in to comment.