Skip to content

Commit 1cbb11d

Browse files
committed
Remove unnecessary logs
1 parent cb35467 commit 1cbb11d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

[email protected]/extension.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,15 +1321,13 @@ class Keyboard extends Dialog {
13211321

13221322
setNormMod(button) {
13231323
if (this.mod.includes(button.char.code)) {
1324-
console.log(button.char.code + " off");
13251324
this.mod.splice(this.mod.indexOf(button.char.code), this.mod.indexOf(button.char.code) + 1);
13261325
if (!(button.char.code == 42) && !(button.char.code == 54))
13271326
button.remove_style_class_name("selected");
13281327
this.modBtns.splice(this.modBtns.indexOf(button), this.modBtns.indexOf(button) + 1);
13291328
this.inputDevice.notify_key(Clutter.get_current_event_time(), button.char.code, Clutter.KeyState.RELEASED);
13301329
this.sendKey([button.char.code])
13311330
} else {
1332-
console.log(button.char.code + " on");
13331331
if (!(button.char.code == 42) && !(button.char.code == 54))
13341332
button.add_style_class_name("selected");
13351333
this.mod.push(button.char.code);

0 commit comments

Comments
 (0)