diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-12-04 13:55:30 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-12-04 13:55:30 +0200 |
commit | c89d83611be9725d718c34de171862658be0f8b3 (patch) | |
tree | e9d83c7d55981400bbbb8debbaa93837eb6c7ba5 /qt-ui/printdialog.cpp | |
parent | d90cca5c4ed8d98704aaf24e59ba00160cb7dc4e (diff) | |
download | subsurface-c89d83611be9725d718c34de171862658be0f8b3.tar.gz |
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>
Diffstat (limited to 'qt-ui/printdialog.cpp')
-rw-r--r-- | qt-ui/printdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/printdialog.cpp b/qt-ui/printdialog.cpp index ac2513917..b6481372a 100644 --- a/qt-ui/printdialog.cpp +++ b/qt-ui/printdialog.cpp @@ -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")); } |