Skip to content

Commit b74f5fa

Browse files
authored
regression: delete candidate of any index (#945)
1 parent b907d7d commit b74f5fa

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

src/rime/context.cc

+5-10
Original file line numberDiff line numberDiff line change
@@ -143,26 +143,21 @@ bool Context::Highlight(size_t index) {
143143
return true;
144144
}
145145

146-
bool Context::DeleteCandidate(an<Candidate> cand) {
147-
if (!cand)
148-
return false;
149-
DLOG(INFO) << "Deleting candidate: " << cand->text();
150-
delete_notifier_(this);
151-
return true; // CAVEAT: this doesn't mean anything is deleted for sure
152-
}
153-
154146
bool Context::DeleteCandidate(size_t index) {
155147
if (composition_.empty())
156148
return false;
157149
Segment& seg(composition_.back());
158-
return DeleteCandidate(seg.GetCandidateAt(index));
150+
seg.selected_index = index;
151+
DLOG(INFO) << "Deleting candidate: " << seg.GetSelectedCandidate()->text();
152+
delete_notifier_(this);
153+
return true; // CAVEAT: this doesn't mean anything is deleted for sure
159154
}
160155

161156
bool Context::DeleteCurrentSelection() {
162157
if (composition_.empty())
163158
return false;
164159
Segment& seg(composition_.back());
165-
return DeleteCandidate(seg.GetSelectedCandidate());
160+
return DeleteCandidate(seg.selected_index);
166161
}
167162

168163
bool Context::ConfirmCurrentSelection() {

src/rime/context.h

-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ class RIME_API Context {
9494

9595
private:
9696
string GetSoftCursor() const;
97-
bool DeleteCandidate(an<Candidate> cand);
9897

9998
string input_;
10099
size_t caret_pos_ = 0;

0 commit comments

Comments
 (0)