Allows users to use left and right key to go to another candidate page in the vertical candidates list.
This fixes #61.
This commit is contained in:
parent
453d69201e
commit
164705e6f3
|
@ -1045,7 +1045,10 @@ public:
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
[self beep];
|
BOOL updated = [gCurrentCandidateController showPreviousPage];
|
||||||
|
if (!updated) {
|
||||||
|
[self beep];
|
||||||
|
}
|
||||||
[self updateClientComposingBuffer:_currentCandidateClient];
|
[self updateClientComposingBuffer:_currentCandidateClient];
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
@ -1060,7 +1063,10 @@ public:
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
[self beep];
|
BOOL updated = [gCurrentCandidateController showNextPage];
|
||||||
|
if (!updated) {
|
||||||
|
[self beep];
|
||||||
|
}
|
||||||
[self updateClientComposingBuffer:_currentCandidateClient];
|
[self updateClientComposingBuffer:_currentCandidateClient];
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue