Skip to content

Commit

Permalink
another try layouting the note group dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Sep 26, 2013
1 parent 39f1413 commit b53a321
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mscore/exampleview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ ExampleView::ExampleView(QWidget* parent)
_score = 0;
setAcceptDrops(true);
setFocusPolicy(Qt::StrongFocus);
double mag = preferences.mag;
_matrix = QTransform(mag, 0.0, 0.0, mag, 10.0, -45.0);
imatrix = _matrix.inverted();
double mag = 1.0;
qreal _spatium = SPATIUM20 * MScore::DPI;
_matrix = QTransform(mag, 0.0, 0.0, mag, _spatium, -_spatium * 6);
imatrix = _matrix.inverted();
}

void ExampleView::layoutChanged()
Expand Down

0 comments on commit b53a321

Please sign in to comment.