aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/x11.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/x11.c b/src/x11.c
index c7fdad2..deae154 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -1403,7 +1403,7 @@ dispatchX11Events(PuglWorld* const world)
continue;
}
- PuglView* view = findView(world, xevent.xany.window);
+ PuglView* const view = findView(world, xevent.xany.window);
if (!view) {
continue;
}
@@ -1448,14 +1448,14 @@ dispatchX11Events(PuglWorld* const world)
break;
case PUGL_FOCUS_IN:
// Set the input context focus
- if (impl->xic) {
- XSetICFocus(impl->xic);
+ if (view->impl->xic) {
+ XSetICFocus(view->impl->xic);
}
break;
case PUGL_FOCUS_OUT:
// Unset the input context focus
- if (impl->xic) {
- XUnsetICFocus(impl->xic);
+ if (view->impl->xic) {
+ XUnsetICFocus(view->impl->xic);
}
break;
default: