From 7ac6c21e832b7d16bd0888d0b66252b6e152005a Mon Sep 17 00:00:00 2001 From: zautrix Date: Mon, 13 Dec 2004 12:35:00 +0000 Subject: many bugfixes --- (limited to 'qtcompat/qinputdialog.cpp') diff --git a/qtcompat/qinputdialog.cpp b/qtcompat/qinputdialog.cpp index 770b281..64c581e 100644 --- a/qtcompat/qinputdialog.cpp +++ b/qtcompat/qinputdialog.cpp @@ -35,6 +35,8 @@ ** **********************************************************************/ +//Edited Lutz Rogowski 2004-12-13 + #include "qinputdialog.h" #include @@ -453,6 +455,11 @@ QString QInputDialog::getItem( const QString &caption, const QString &label, con bool ok_ = FALSE; QString result; + int fixWid = 320; + if ( QApplication::desktop()->width() <= 240 ) { + fixWid = 230; + } + dlg->setFixedWidth( fixWid); ok_ = dlg->exec() == QDialog::Accepted; if ( ok ) *ok = ok_; -- cgit v0.9.0.2