From 498f4b055565bf814fb8f6bbef3efec61b4d801a Mon Sep 17 00:00:00 2001 From: nowrep Date: Mon, 18 Feb 2013 19:19:26 +0100 Subject: [PATCH] [Windows] Adjust height of AboutDialog. --- src/lib/other/aboutdialog.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/other/aboutdialog.cpp b/src/lib/other/aboutdialog.cpp index 201d03196..a86ff4454 100644 --- a/src/lib/other/aboutdialog.cpp +++ b/src/lib/other/aboutdialog.cpp @@ -1,6 +1,6 @@ /* ============================================================ * QupZilla - WebKit based browser -* Copyright (C) 2010-2012 David Rosca +* Copyright (C) 2010-2013 David Rosca * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -39,6 +39,10 @@ AboutDialog::AboutDialog(QWidget* parent) connect(ui->authorsButton, SIGNAL(clicked()), this, SLOT(buttonClicked())); showAbout(); + +#ifdef Q_OS_WIN + resize(300, height()); +#endif } void AboutDialog::buttonClicked()