text insert bug fix

This commit is contained in:
Manindra Moharana
2013-07-06 00:59:09 +05:30
parent f90f8b56f4
commit 2664668d24
3 changed files with 30 additions and 48 deletions

View File

@@ -790,7 +790,7 @@ public class ASTGenerator {
// CompletionCandidate[] candidatesArray = candidates
// .toArray(new CompletionCandidate[candidates.size()]);
errorCheckerService.getEditor().textArea()
.showSuggestion(defListModel);
.showSuggestion(defListModel,word);
}
};
@@ -1376,7 +1376,7 @@ public class ASTGenerator {
worker.execute();
}
});
// TODO: Diable this listner at deployment
btnListOccurrence.addActionListener(new ActionListener() {
@Override