[gnome-shell/wip/carlosg/osk-updates: 12/35] keyboard: Drop needless signal from OSK Key object
- From: Carlos Garnacho <carlosg src gnome org>
 
- To: commits-list gnome org
 
- Cc: 
 
- Subject: [gnome-shell/wip/carlosg/osk-updates: 12/35] keyboard: Drop needless signal from OSK Key object
 
- Date: Wed, 29 Jun 2022 14:02:47 +0000 (UTC)
 
commit 2c7c749d3f10db3cc783fa3ed85890456e7bca1d
Author: Carlos Garnacho <carlosg gnome org>
Date:   Thu Apr 14 20:49:00 2022 +0200
    keyboard: Drop needless signal from OSK Key object
    
    The 'pressed' signal will be emitted in the same circumstances now,
    there's no need for a separate 'activated' signal.
 js/ui/keyboard.js | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 676d4d5f86..20647c88b2 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -298,7 +298,6 @@ var LanguageSelectionPopup = class extends PopupMenu.PopupMenu {
 
 var Key = GObject.registerClass({
     Signals: {
-        'activated': {},
         'long-press': {},
         'pressed': {},
         'released': {},
@@ -362,8 +361,6 @@ var Key = GObject.registerClass({
     }
 
     _press(button) {
-        this.emit('activated');
-
         if (button === this.keyButton) {
             this._pressTimeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
                 KEY_LONG_PRESS_TIME,
@@ -921,7 +918,7 @@ var EmojiPager = GObject.registerClass({
 
             key.keyButton.set_button_mask(0);
 
-            key.connect('activated', () => {
+            key.connect('pressed', () => {
                 this._currentKey = key;
             });
             key.connect('long-press', () => {
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]