From c1e0e325f90aa0d606d65d3462bbd9cdf09abfb8 Mon Sep 17 00:00:00 2001 From: mlangkabel Date: Tue, 24 Oct 2017 12:22:22 +0200 Subject: [PATCH] ui: fixed width of enter license window * on windows the enter license window was too small so the entered key would have unwanted line breaks. --- src/lib_gui/qt/window/QtLicenseWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_gui/qt/window/QtLicenseWindow.cpp b/src/lib_gui/qt/window/QtLicenseWindow.cpp index 2201af34..646ce1fb 100644 --- a/src/lib_gui/qt/window/QtLicenseWindow.cpp +++ b/src/lib_gui/qt/window/QtLicenseWindow.cpp @@ -19,7 +19,7 @@ QtLicenseWindow::QtLicenseWindow(QWidget *parent) QSize QtLicenseWindow::sizeHint() const { - return QSize(700, 500); + return QSize(740, 500); } void QtLicenseWindow::clear()