[uim-commit] r1253 - trunk/gtk
ekato at freedesktop.org
ekato at freedesktop.org
Sun Aug 21 13:06:32 EST 2005
Author: ekato
Date: 2005-08-20 20:06:28 -0700 (Sat, 20 Aug 2005)
New Revision: 1253
Modified:
trunk/gtk/gtk-im-uim.c
Log:
* gtk/gtk-im-uim.c (update_prop_list_cb) : Don't update the status
when disable_focused_context is set.
(update_prop_label_cb) : Ditto.
Modified: trunk/gtk/gtk-im-uim.c
===================================================================
--- trunk/gtk/gtk-im-uim.c 2005-08-21 01:46:14 UTC (rev 1252)
+++ trunk/gtk/gtk-im-uim.c 2005-08-21 03:06:28 UTC (rev 1253)
@@ -710,7 +710,7 @@
IMUIMContext *uic = (IMUIMContext *)ptr;
GString *tmp;
- if (uic != focused_context)
+ if (uic != focused_context || disable_focused_context)
return;
tmp = g_string_new("");
@@ -728,7 +728,7 @@
gint x, y;
uim_bool show_state;
- if (uic != focused_context)
+ if (uic != focused_context || disable_focused_context)
return;
tmp = g_string_new("");
More information about the uim-commit
mailing list