X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Finputline.cpp;h=91b45440e2d632cdcaa29b747f49d5219e38d401;hp=eaf1212fedf5a89d7110303de35b038ac3f64098;hb=f4de537b2032ee4782de332c69feff245b9a4d30;hpb=9bd789919e5f539cc3b8c70fd25acf6d6631d268 diff --git a/src/uisupport/inputline.cpp b/src/uisupport/inputline.cpp index eaf1212f..91b45440 100644 --- a/src/uisupport/inputline.cpp +++ b/src/uisupport/inputline.cpp @@ -38,6 +38,9 @@ InputLine::InputLine(QWidget *parent) setMaximumHeight(document()->size().toSize().height()); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setAcceptRichText(false); + setLineWrapMode(NoWrap); + enableFindReplace(false); + setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); connect(this, SIGNAL(textChanged()), this, SLOT(on_textChanged())); #endif @@ -103,11 +106,15 @@ void InputLine::keyPressEvent(QKeyEvent * event) { case Qt::Key_Select: // for Qtopia emit returnPressed(); + break; #ifdef HAVE_KDE //Since this is a ktextedit, we don't have this signal "natively" case Qt::Key_Return: + event->accept(); emit returnPressed(); + break; + #endif default: