From 86cfa9479c119d581808f53f7b46e9cfeb127ccd Mon Sep 17 00:00:00 2001 From: mickeyl Date: Tue, 08 Jul 2003 10:12:26 +0000 Subject: make inputmethods half the desktop width on the SIMpad --- (limited to 'core/launcher/inputmethods.cpp') diff --git a/core/launcher/inputmethods.cpp b/core/launcher/inputmethods.cpp index 765dfe9..09b9a83 100644 --- a/core/launcher/inputmethods.cpp +++ b/core/launcher/inputmethods.cpp @@ -288,7 +288,11 @@ void InputMethods::showKbd( bool on ) // HACK... Make the texteditor fit with all input methods // Input methods should also never use more than about 40% of the screen int height = QMIN( method->widget->sizeHint().height(), 134 ); + #ifdef QT_QWS_SIMPAD + method->widget->resize( qApp->desktop()->width() / 2, height ); // make it half the width on the SIMpad + #else method->widget->resize( qApp->desktop()->width(), height ); + #endif method->widget->move( 0, mapToGlobal( QPoint() ).y() - height ); method->widget->show(); } else { -- cgit v0.9.0.2