From 0f3dc7112828dee52ceb7d8cabff2c1ccd85ea91 Mon Sep 17 00:00:00 2001 From: ksuprynowicz Date: Sun, 28 May 2023 12:39:18 +0200 Subject: [PATCH] Comment on future IME improvements --- libraries/gl/src/gl/GLWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/gl/src/gl/GLWidget.cpp b/libraries/gl/src/gl/GLWidget.cpp index 7eaebbc2c9..078737443c 100644 --- a/libraries/gl/src/gl/GLWidget.cpp +++ b/libraries/gl/src/gl/GLWidget.cpp @@ -86,6 +86,8 @@ void GLWidget::doneCurrent() { } QVariant GLWidget::inputMethodQuery(Qt::InputMethodQuery query) const { + // TODO: for now we just use top left corner for an IME popup location, but in the future its position could be calculated + // for a given entry field. if (query == Qt::ImCursorRectangle) { int x = 50; int y = 50;