mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 22:26:16 +00:00
PrintDialog: make the dialog slightly larger
I don't recall why but this dialog ended with a fixed size (setFixedSize()), so it has to be re-adjusted each time a change is made in there. We resize it to compensate for the addition of the progress bar. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
d90cca5c4e
commit
c89d83611b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f)
|
|||
|
||||
layout->addWidget(optionsWidget);
|
||||
|
||||
setFixedSize(520, 320);
|
||||
setFixedSize(520, 350);
|
||||
setWindowTitle(tr("Print"));
|
||||
setWindowIcon(QIcon(":subsurface-icon"));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue