[Uim-bugs] [Bug 2108] New: update candidate window after commit

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Sun Dec 19 16:54:38 EET 2004


Please do not reply to this email: if you want to comment on the bug, go to          
the URL shown below and enter yourcomments there.   
 
https://bugs.freedesktop.org/show_bug.cgi?id=2108        
   
           Summary: update candidate window after commit
           Product: UIM
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libuim
        AssignedTo: uim-bugs at freedesktop.org
        ReportedBy: yusuke at cherubim.icw.co.jp


[Report from Dairiki-san]
uim-0.4.5's anthy.scm has following code
(define anthy-do-commit
(lambda (ac)
(anthy-reset-candidate-window ac)
...

This performs candidate window before string commit, so sometimes candidate window
will not disappear with following environment. scim-1.0.1, scim-uim-0.1.3,
eclipse-3.0.1(gtk+).

He reported the problem was fixed by modifying the function as follows.

(define anthy-do-commit
(lambda (ac)
(im-commit ac
 (anthy-get-commit-string
  ac 0
  (length (anthy-context-index-list ac))))
 (anthy-commit-string ac 0
  (length (anthy-context-index-list ac)))
 (anthy-reset-candidate-window ac)
 (anthy-flush ac)))        
   
   
--         
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email       
   
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the uim-bugs mailing list