Skip to content

Commit

Permalink
Remove mistakenly inserted "|| true" in if-statement
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhahmann authored and tinevez committed Nov 12, 2024
1 parent 339294c commit 82dd28a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ public void scroll( final double wheelRotation, final boolean isHorizontal, fina
{
if ( zoomIn )
{
if ( !hasMinSizeY( transform ) || true )
if ( !hasMinSizeY( transform ) )
transform.zoomY( dScale, y );
}
else
Expand Down

0 comments on commit 82dd28a

Please sign in to comment.