Merge pull request #1002 from maltee1/fix_send_with_input_method
properly commit preedit text
This commit is contained in:
commit
3f134019f4
@ -446,10 +446,10 @@ Rectangle {
|
|||||||
width: 22
|
width: 22
|
||||||
height: 22
|
height: 22
|
||||||
image: ":/icons/icons/ui/send.svg"
|
image: ":/icons/icons/ui/send.svg"
|
||||||
|
Layout.rightMargin: 8
|
||||||
ToolTip.visible: hovered
|
ToolTip.visible: hovered
|
||||||
ToolTip.text: qsTr("Send")
|
ToolTip.text: qsTr("Send")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
messageInput.append(messageInput.preeditText)
|
|
||||||
room.input.send();
|
room.input.send();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include <QDropEvent>
|
#include <QDropEvent>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QGuiApplication>
|
#include <QGuiApplication>
|
||||||
|
#include <QInputMethod>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
#include <QMimeDatabase>
|
#include <QMimeDatabase>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
@ -234,6 +235,8 @@ InputBar::nextText()
|
|||||||
void
|
void
|
||||||
InputBar::send()
|
InputBar::send()
|
||||||
{
|
{
|
||||||
|
QInputMethod *im = QGuiApplication::inputMethod();
|
||||||
|
im->commit();
|
||||||
if (text().trimmed().isEmpty())
|
if (text().trimmed().isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user