From 3751311a5b3b40534fbeccb039a798f8b4157caa Mon Sep 17 00:00:00 2001 From: Jakob Rosenberg Date: Tue, 15 Mar 2022 09:09:12 +0100 Subject: [PATCH] fix: disable statusBar If and how we use status bar is TBD. For now it will be disabled. --- src/PyMakr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PyMakr.js b/src/PyMakr.js index 4761c88d..f3dd5990 100644 --- a/src/PyMakr.js +++ b/src/PyMakr.js @@ -39,7 +39,7 @@ class PyMakr { this.projectsProvider = new ProjectsProvider(this); this.devicesProvider = new DevicesProvider(this); this.fileSystem = new FileSystemProvider(this); - this.statusBar = new StatusBar(this); + // this.statusBar = new StatusBar(this); this.registerWithIde(); this.setup();