From 59eba81944d99f7cc1c699609f6ebe36af7db5e8 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Sat, 17 Mar 2018 17:31:57 -0400 Subject: Overhaul of MuPDF rendering. Fixed bugs and improved the find highlight system. Moved the cache system to the backend. Reenabled the properties and find edit menu by default. --- src-qt5/desktop-utils/lumina-pdf/propDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-pdf/propDialog.cpp') diff --git a/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp b/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp index c40f537e..6226234d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp @@ -41,7 +41,7 @@ PropDialog::PropDialog(Renderer *Backend) : QDialog(), ui(new Ui::PropDialog()){ ui->keywordE->setText( info.value("keywords").toString() ); ui->createdEntry->setText( info.value("dt_created").toString() ); ui->modifiedEntry->setText( info.value("dt_modified").toString() ); - ui->numberL->setText( QString::number(Backend->numPages()) ); + ui->numberL->setText( ui->numberL->text() + QString::number(Backend->numPages()) ); } -- cgit From d585d64718941d54b004daa0ece491783ef78ad8 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Sat, 17 Mar 2018 17:39:09 -0400 Subject: Replaced tabs with spaces and removed some unneeded comments --- src-qt5/desktop-utils/lumina-pdf/propDialog.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-pdf/propDialog.cpp') diff --git a/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp b/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp index 6226234d..c721f65f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/propDialog.cpp @@ -42,7 +42,6 @@ PropDialog::PropDialog(Renderer *Backend) : QDialog(), ui(new Ui::PropDialog()){ ui->createdEntry->setText( info.value("dt_created").toString() ); ui->modifiedEntry->setText( info.value("dt_modified").toString() ); ui->numberL->setText( ui->numberL->text() + QString::number(Backend->numPages()) ); - } //Load size from mainUI after pages have loaded -- cgit