projects
/
platform
/
upstream
/
ibus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8339cb
)
Fix problem when page size == 10.
author
Huang Peng
<shawn.p.huang@gmail.com>
Tue, 1 Jul 2008 15:28:55 +0000
(23:28 +0800)
committer
Huang Peng
<shawn.p.huang@gmail.com>
Tue, 1 Jul 2008 15:28:55 +0000
(23:28 +0800)
panel/candidatepanel.py
patch
|
blob
|
history
diff --git
a/panel/candidatepanel.py
b/panel/candidatepanel.py
index
a11eab0
..
b96e36b
100644
(file)
--- a/
panel/candidatepanel.py
+++ b/
panel/candidatepanel.py
@@
-51,8
+51,8
@@
class CandidateArea (gtk.HBox):
self.pack_start (VSeparator(), False, False, 0)
self.pack_start (self._vbox2, True, True, 4)
- for i in xrange (1, 1
0
):
- label1 = gtk.Label ("%d." %
i
)
+ for i in xrange (1, 1
1
):
+ label1 = gtk.Label ("%d." %
(i % 10)
)
label1.set_alignment (0.0, 0.5)
label1.set_no_show_all (True)