summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorPranav Kant <pranavk@collabora.co.uk>2018-02-16 12:25:13 +0530
committerPranav Kant <pranavk@collabora.co.uk>2018-02-19 13:24:36 +0530
commit05e4ce8643cc4cba6e86779af162caf79c2c7bf3 (patch)
treeaa8608af9008fdf7b38e6b4b74b268bd1324bd00 /vcl
parent7d4584a18fac7f37ed0f7b3b26e6e1a9d65da26f (diff)
lok IME: underline characters which are being composed
Change-Id: Ibfc35f1668228400f37ec9b0b0350583483f484d
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 388c793c03d7..111194255057 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2078,7 +2078,7 @@ void Window::PostExtTextInputEvent(VclEventId nType, const OUString& rText)
{
std::unique_ptr<ExtTextInputAttr[]> pAttr(new ExtTextInputAttr[rText.getLength()]);
for (int i = 0; i < rText.getLength(); ++i) {
- pAttr[i] = ExtTextInputAttr::NONE;
+ pAttr[i] = ExtTextInputAttr::Underline;
}
SalExtTextInputEvent aEvent { rText, pAttr.get(), rText.getLength(), EXTTEXTINPUT_CURSOR_OVERWRITE };
ImplWindowFrameProc(this, SalEvent::ExtTextInput, &aEvent);