Revision: 6521
Author: nogu.dev
Date: Sun Jul 18 00:32:27 2010
Log: * qt4/immodule/candidatetablewindow.cpp
- (CandidateTableWindow::updateView):
Disable button only when text is empty.
http://code.google.com/p/uim/source/detail?r=6521
Modified:
/trunk/qt4/immodule/candidatetablewindow.cpp
=======================================
--- /trunk/qt4/immodule/candidatetablewindow.cpp Sat Jul 17 23:24:24 2010
+++ /trunk/qt4/immodule/candidatetablewindow.cpp Sun Jul 18 00:32:27 2010
@@ -218,7 +218,8 @@
continue;
}
if (index - delta >= ncandidates) {
- button->setEnabled(false);
+ if (button->text().isEmpty())
+ button->setEnabled(false);
continue;
}
int candidateIndex = displayLimit * newpage + index - delta;