summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakao Fujiwara <tfujiwar@redhat.com>2018-04-18 13:21:55 +0900
committerTakao Fujiwara <tfujiwar@redhat.com>2018-04-18 13:37:53 +0900
commit35fced27dff5679c50640fcde91283eef444b257 (patch)
tree29f9b507e5f697d9a2ca39f2b57feee4e1fd1716
parentbe76b1930077ac97a9c0e38b6453da9880f7f186 (diff)
downloadgnome-shell-35fced27dff5679c50640fcde91283eef444b257.tar.gz
ibusCandidatePopup: Fix candidate-clicked signal
-rw-r--r--js/ui/ibusCandidatePopup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/ibusCandidatePopup.js b/js/ui/ibusCandidatePopup.js
index 2f794fcfa..786799bf9 100644
--- a/js/ui/ibusCandidatePopup.js
+++ b/js/ui/ibusCandidatePopup.js
@@ -166,7 +166,7 @@ var CandidatePopup = new Lang.Class({
this._panelService.cursor_down();
});
- this._candidateArea.connect('candidate-clicked', () => {
+ this._candidateArea.connect('candidate-clicked', (area, index, button, state) => {
this._panelService.candidate_clicked(index, button, state);
});