From 3b73fc6494cfca544a36464ef9a5521810bb0955 Mon Sep 17 00:00:00 2001 From: Vesa Pikki Date: Sun, 14 Jun 2009 19:24:00 +0300 Subject: [PATCH] Made License and Authors dialogs a bit bigger. --- gui/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 8a921d4b0..deba7f366 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -448,12 +448,14 @@ void MainWindow::About() void MainWindow::ShowLicense() { FileViewDialog *dlg = new FileViewDialog(":COPYING", this); + dlg->resize(550,400); dlg->exec(); } void MainWindow::ShowAuthors() { FileViewDialog *dlg = new FileViewDialog(":AUTHORS", this); + dlg->resize(350,400); dlg->exec(); }