Commit cfa0530e authored by aniket-engg's avatar aniket-engg Committed by Aniket

removing event listener fixed

parent f896e705
...@@ -74,7 +74,8 @@ module.exports = class TestTab extends ViewPlugin { ...@@ -74,7 +74,8 @@ module.exports = class TestTab extends ViewPlugin {
onDeactivation () { onDeactivation () {
this.off('filePanel', 'newTestFileCreated') this.off('filePanel', 'newTestFileCreated')
this.off('filePanel', 'setWorkspace') this.off('filePanel', 'setWorkspace')
this.fileManager.events.removeListener('currentFileChanged', this.updateForNewCurrent) // 'currentFileChanged' event is added more than once
this.fileManager.events.removeAllListeners('currentFileChanged')
} }
listenToEvents () { listenToEvents () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment