Skip to content

Commit

Permalink
Merge pull request musescore#16713 from limse10/set-min-zoom-percentage
Browse files Browse the repository at this point in the history
Fix musescore#16701: set MIN_DISPLAYED_ZOOM_PERCENTAGE to 5
  • Loading branch information
DmitryArefiev authored Mar 31, 2023
2 parents eb79734 + dd24ae7 commit be093e6
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 be093e6

Please sign in to comment.