From 338e9a5d92dfe77aebf6e0460212c8f03a4e8188 Mon Sep 17 00:00:00 2001 From: Serban Andrei Date: Sun, 18 Apr 2021 18:34:05 +0300 Subject: [PATCH] Fixed opening on a blank page --- source/plugins/projects/projects/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/plugins/projects/projects/index.js b/source/plugins/projects/projects/index.js index fbed3cdd..781fa204 100644 --- a/source/plugins/projects/projects/index.js +++ b/source/plugins/projects/projects/index.js @@ -1211,8 +1211,9 @@ let projects = { } } else { studio.workspace.showDialog(ProjectsLibrary, {width: 1000}); - } - + } + } else if(!studio.settings.loadValue('firstrun', 'firstRun', true)) { + studio.workspace.showDialog(ProjectsLibrary, {width: 1000}); } },