From 40a851215b17a659b3cf327a01643631de6b6df3 Mon Sep 17 00:00:00 2001 From: scorpio810 Date: Mon, 12 Nov 2018 16:07:52 +0000 Subject: [PATCH] Change in aboutqet widget fixed size, thanks Re-searcher git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5589 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/aboutqet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/aboutqet.cpp b/sources/aboutqet.cpp index 8c857348c..5af4e790b 100644 --- a/sources/aboutqet.cpp +++ b/sources/aboutqet.cpp @@ -34,7 +34,7 @@ AboutQET::AboutQET(QWidget *parent) : QDialog(parent) { setWindowTitle(tr("À propos de QElectrotech", "window title")); - setFixedSize (700, 600); + setFixedSize (1200, 600); //setMinimumHeight(600); //setMinimumWidth(600); setModal(true); @@ -58,7 +58,7 @@ AboutQET::AboutQET(QWidget *parent) : QScrollArea* scrollArea = new QScrollArea(this); scrollArea->setWidgetResizable(true); - scrollArea->setFixedSize (590, 590); + scrollArea->setFixedSize (1090, 590); scrollArea->setWidget(tabs); }