diff --git a/src/workspace.js b/src/workspace.js index a3f85ddeb..141ef5181 100644 --- a/src/workspace.js +++ b/src/workspace.js @@ -1543,9 +1543,9 @@ module.exports = class Workspace extends Model { } subscribeToFontSize () { - return this.config.onDidChange('editor.fontSize', ({oldValue}) => { + return this.config.onDidChange('editor.fontSize', () => { if (this.originalFontSize == null) { - this.originalFontSize = oldValue + this.originalFontSize = this.config.get('editor.fontSize') } }) }