Default will show cursor in lookup table
authorHuang Peng <shawn.p.huang@gmail.com>
Thu, 14 Aug 2008 13:47:20 +0000 (21:47 +0800)
committerHuang Peng <shawn.p.huang@gmail.com>
Thu, 14 Aug 2008 13:47:20 +0000 (21:47 +0800)
ibus/lookuptable.py

index 82d25eb..bfdc479 100644 (file)
@@ -64,7 +64,7 @@ class CandidateList(list):
 class LookupTable(object):
     def __init__(self, page_size = 5, labels = None):
         super(LookupTable, self).__init__()
-        self.__cursor_visible = False
+        self.__cursor_visible = True
         self.__cursor_pos = 0
         self.__candidates = CandidateList()
         self.set_page_size(page_size)