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:
Lubomir I. Ivanov 2013-12-04 13:55:30 +02:00
parent d90cca5c4e
commit c89d83611b

View file

@ -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"));
}