X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/166fbaa46a1b3583832b84ef88c311e0f7557c5b..c3485a4eef3a3fb03f8a12784d6b35bb68471ea0:/src/common/cmndata.cpp diff --git a/src/common/cmndata.cpp b/src/common/cmndata.cpp index a9a9c05f8e..3c04d1d0b9 100644 --- a/src/common/cmndata.cpp +++ b/src/common/cmndata.cpp @@ -342,7 +342,12 @@ wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData) m_printMinPage = 1; m_printMaxPage = 9999; m_printNoCopies = 1; + // On Mac the Print dialog always defaults to "All Pages" +#ifdef __WXMAC__ + m_printAllPages = true; +#else m_printAllPages = false; +#endif m_printCollate = false; m_printToFile = false; m_printSelection = false;