Skip to content

Commit

Permalink
fix #95466: wrong size palettes with 0.8 scaling when using 120 DPI d…
Browse files Browse the repository at this point in the history
…isplay
  • Loading branch information
MarcSabatella committed Jan 25, 2016
1 parent 6205e12 commit 1e0c6a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mscore/palette.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1117,8 +1117,7 @@ void Palette::write(Xml& xml) const
xml.stag(QString("Palette name=\"%1\"").arg(Xml::xmlString(_name)));
xml.tag("gridWidth", hgrid / guiScaling);
xml.tag("gridHeight", vgrid / guiScaling);
if (extraMag != 1.0)
xml.tag("mag", extraMag / guiScaling);
xml.tag("mag", extraMag / guiScaling);
if (_drawGrid)
xml.tag("grid", _drawGrid);

Expand Down

0 comments on commit 1e0c6a1

Please sign in to comment.