From 291aa0b053279ccb2bcf3ccef72a63775f7263a6 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 21 Jan 2019 21:48:53 +0100 Subject: [PATCH] keyboard: Remove unused code This signal does not exist, the Suggestions.add() method allows to attach per-element callbacks instead. --- js/ui/keyboard.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js index b1fafb953..e8de11657 100644 --- a/js/ui/keyboard.js +++ b/js/ui/keyboard.js @@ -675,9 +675,6 @@ var Keyboard = class Keyboard { this._current_page = null; this._suggestions = new Suggestions(); - this._suggestions.connect('suggestion-clicked', (suggestions, str) => { - this._keyboardController.commitString(str); - }); this.actor.add(this._suggestions.actor, { x_align: St.Align.MIDDLE, x_fill: false });