Skip to content

Commit

Permalink
Fix musescore#16701: set min zoom to 5 and min zoom dropdown to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
limse10 committed Mar 30, 2023
1 parent fae324d commit dd24ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appshell/view/notationstatusbarmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ void NotationStatusBarModel::setCurrentZoom(const QString& zoomId)

int NotationStatusBarModel::minZoomPercentage() const
{
return possibleZoomPercentageList().first();
return 5;
}

int NotationStatusBarModel::maxZoomPercentage() const
Expand Down

0 comments on commit dd24ae7

Please sign in to comment.