diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-20 12:42:57 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-20 12:42:57 +0800 |
| commit | 780d259ef70abc42395cd796315344fa535979c2 (patch) | |
| tree | 8a5cfb4964382749eea5d9a54980a59050f77f75 /daemon/inputcontext.py | |
| parent | 991e01f1500ef0b4c5cd4cb38144bbb51b8478d7 (diff) | |
| download | ibus-780d259ef70abc42395cd796315344fa535979c2.tar.gz ibus-780d259ef70abc42395cd796315344fa535979c2.tar.xz ibus-780d259ef70abc42395cd796315344fa535979c2.zip | |
WIP.
Diffstat (limited to 'daemon/inputcontext.py')
| -rw-r--r-- | daemon/inputcontext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/inputcontext.py b/daemon/inputcontext.py index f251de9..a9f9069 100644 --- a/daemon/inputcontext.py +++ b/daemon/inputcontext.py @@ -213,7 +213,7 @@ class InputContext(ibus.Object): def show_preedit(self): self._preedit_visible = True if self._use_preedit: - self._ibusconn.emit_dbus_signal("ShowPreedit") + self._ibusconn.emit_dbus_signal("ShowPreedit", self._id) else: # show preedit on panel self.emit("show-preedit") @@ -221,7 +221,7 @@ class InputContext(ibus.Object): def hide_preedit(self): self._preedit_visible = False if self._use_preedit: - self._ibusconn.emit_dbus_signal("HidePreedit") + self._ibusconn.emit_dbus_signal("HidePreedit", self._id) else: # show preedit on panel self.emit("hide-preedit") |
