File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 11# QOwnNotes Changelog
22
3+ ## 25.12.0
4+
5+ - Fixed PDF export from markdown preview now renders in color instead of grayscale
6+ - The printer color mode is now explicitly set to color when exporting notes as PDF
7+
38## 25.11.5
49
510- There now is a checkbox in the _General settings_ to enable the checksum checking
Original file line number Diff line number Diff line change @@ -5527,6 +5527,7 @@ void MainWindow::exportNoteAsPDF(QPlainTextEdit *textEdit) {
55275527 */
55285528void MainWindow::exportNoteAsPDF (QTextDocument *doc) {
55295529 auto *printer = new QPrinter (QPrinter::HighResolution);
5530+ printer->setColorMode (QPrinter::Color);
55305531
55315532 if (prepareExportNoteAsPDFPrinter (printer)) {
55325533 doc->print (printer);
You can’t perform that action at this time.
0 commit comments