diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-27 14:33:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-27 14:40:45 +0100 |
commit | 32351d1bd34a0a0d3bb8fa41667a770c125de460 (patch) | |
tree | 97c635d58052da292de935f9e59fe5a8d0bb75d1 /vcl/unx/gtk3/gtk3gtkframe.cxx | |
parent | 06d073695c764744d308c74f80c40a317255fc05 (diff) |
Resolves: rhbz#1436050 im window misplaced for gtk3
events are relative to event window not the toplevel
window which includes a menubar widget (and maybe
the decoration topbar as well)
Change-Id: I5101bd4a35d6e3aee03191594e5f6edb7ca34c69
Diffstat (limited to 'vcl/unx/gtk3/gtk3gtkframe.cxx')
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx index 67d79c1e0c51..7ae0b9c0915b 100644 --- a/vcl/unx/gtk3/gtk3gtkframe.cxx +++ b/vcl/unx/gtk3/gtk3gtkframe.cxx @@ -3579,7 +3579,7 @@ void GtkSalFrame::IMHandler::createIMContext() G_CALLBACK (signalIMPreeditEnd), this ); GetGenericData()->ErrorTrapPush(); - gtk_im_context_set_client_window( m_pIMContext, widget_get_window(GTK_WIDGET(m_pFrame->m_pWindow)) ); + gtk_im_context_set_client_window(m_pIMContext, widget_get_window(m_pFrame->getMouseEventWidget())); gtk_im_context_focus_in( m_pIMContext ); GetGenericData()->ErrorTrapPop(); m_bFocused = true; |