[gnome-shell/wip/carlosg/osk-updates: 156/180] 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: 156/180] keyboard: Drop needless signal from OSK Key object
- Date: Wed, 10 Aug 2022 14:04:37 +0000 (UTC)
commit 7be78d7e43741d35b678a0f6479a2b9b9123f325
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 b51eeb4135..44426b2255 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -297,7 +297,6 @@ var LanguageSelectionPopup = class extends PopupMenu.PopupMenu {
var Key = GObject.registerClass({
Signals: {
- 'activated': {},
'long-press': {},
'pressed': {},
'released': {},
@@ -356,8 +355,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,
@@ -907,7 +904,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]