diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-09-23 11:29:40 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-09-23 11:29:40 +0800 |
| commit | bc4d2db0ea4c00d2f5a5547de01603a1e13eec90 (patch) | |
| tree | 22a34621854375ce3ce40473fea89219b9cc6701 | |
| parent | ffcba4bfdc940e94efafa464201892a69c3cbddf (diff) | |
| download | ibus-bc4d2db0ea4c00d2f5a5547de01603a1e13eec90.tar.gz ibus-bc4d2db0ea4c00d2f5a5547de01603a1e13eec90.tar.xz ibus-bc4d2db0ea4c00d2f5a5547de01603a1e13eec90.zip | |
Fix problem when context focus out.
| -rw-r--r-- | daemon/bus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/bus.py b/daemon/bus.py index d7a6eca..9ad5ef4 100644 --- a/daemon/bus.py +++ b/daemon/bus.py @@ -150,9 +150,9 @@ class IBus(ibus.Object): if context == self.__focused_context: self.__remove_focused_context_handlers() self.__focused_context = None + self.__panel.focus_out(context.get_id()) context.focus_out() - self.__panel.focus_out(context.get_id()) def reset(self, ic, conn): context = self.__lookup_context(ic, conn) |
