1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 21:49:55 +00:00

Fixed issue with new profile dialog being too small

This commit is contained in:
Pieter van der Kloet 2013-03-11 01:23:24 +01:00
parent 091c569fbe
commit fc1940257a

View file

@ -1,14 +1,14 @@
#include "textinputdialog.hpp"
#include <QDialogButtonBox> #include <QDialogButtonBox>
#include <QApplication> #include <QApplication>
#include <QPushButton> #include <QPushButton>
#include <QLabel>
#include <QVBoxLayout> #include <QVBoxLayout>
#include <QValidator> #include <QValidator>
#include <QLabel>
#include <components/fileorderlist/utils/lineedit.hpp> #include <components/fileorderlist/utils/lineedit.hpp>
#include "textinputdialog.hpp"
TextInputDialog::TextInputDialog(const QString& title, const QString &text, QWidget *parent) : TextInputDialog::TextInputDialog(const QString& title, const QString &text, QWidget *parent) :
QDialog(parent) QDialog(parent)
{ {
@ -38,7 +38,6 @@ TextInputDialog::TextInputDialog(const QString& title, const QString &text, QWid
Q_UNUSED(title); Q_UNUSED(title);
#endif #endif
setMaximumHeight(height());
setOkButtonEnabled(false); setOkButtonEnabled(false);
setModal(true); setModal(true);