From 1def646e099fc0e4d209fef06a75e5003ad479f2 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Thu, 12 Apr 2018 13:35:30 -0400 Subject: [PATCH] Return the property we're actually setting --- src/text-editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text-editor.js b/src/text-editor.js index bf2150eb1..2cf8820b4 100644 --- a/src/text-editor.js +++ b/src/text-editor.js @@ -1002,7 +1002,7 @@ class TextEditor { this.update({enableKeyboardInput: enabled}) } - isKeyboardInputEnabled () { return this.keyboardInputEnabled } + isKeyboardInputEnabled () { return this.enableKeyboardInput } onDidChangeMini (callback) { return this.emitter.on('did-change-mini', callback)