build: install the GTK module predictably

This commit is contained in:
2026-08-12 15:57:18 +09:00
parent 1295480858
commit 1d8d711882
2 changed files with 18 additions and 10 deletions

View File

@@ -216,7 +216,12 @@ reset(GtkIMContext *ctx)
static void
focusout(GtkIMContext *ctx)
{
sendreset((Im*)ctx);
Im *im;
im = (Im*)ctx;
sendreset(im);
/* Closing the context connection releases engine ownership. */
srvclose(im);
}
static void