Skip to content

Commit

Permalink
fix #35616: custom page displays as A4
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed Oct 11, 2014
1 parent ccfab27 commit 173e0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/page.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ namespace Ms {
#define MM(x) ((x)/INCH)

const PaperSize paperSizes[] = {
PaperSize("Custom", MM(1), MM(1)),
PaperSize("A4", MM(210), MM(297)),
PaperSize("B5", MM(176), MM(250)),
PaperSize("Letter", 8.5, 11),
Expand Down Expand Up @@ -66,7 +67,6 @@ const PaperSize paperSizes[] = {
PaperSize("Folio", MM(210), MM(330)),
PaperSize("Ledger", MM(432), MM(279)),
PaperSize("Tabloid", MM(279), MM(432)),
PaperSize("Custom", MM(1), MM(1)),
PaperSize(0, MM(1), MM(1)) // mark end of list
};

Expand Down

0 comments on commit 173e0ac

Please sign in to comment.