mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
settings.cpp
: small fix
This commit is contained in:
parent
1c7fb23d0d
commit
2450930703
1 changed files with 2 additions and 2 deletions
|
@ -162,8 +162,8 @@ settings::settings(QWidget *parent) :
|
|||
}
|
||||
}
|
||||
else {
|
||||
ui->pageSizeWidthLabel->setText("Width: " + QString::number(defaultEpubPageWidth));
|
||||
ui->pageSizeHeightLabel->setText("Height: " + QString::number(defaultEpubPageHeight));
|
||||
ui->pageSizeWidthLabel->setText(QString::number(defaultEpubPageWidth));
|
||||
ui->pageSizeHeightLabel->setText(QString::number(defaultEpubPageHeight));
|
||||
pageSizeHeightSaved = defaultEpubPageHeight;
|
||||
pageSizeWidthSaved = defaultEpubPageWidth;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue