ui: don't print alert if lose visibility before compile

This commit is contained in:
Steven Hugg 2021-08-17 20:01:43 -05:00
parent 6134a8c89c
commit 05ab17d3da
1 changed files with 2 additions and 1 deletions

View File

@ -1475,13 +1475,13 @@ function _pause() {
}
function pause() {
if (!checkRunReady()) return;
clearBreakpoint();
_pause();
userPaused = true;
}
function _resume() {
if (!checkRunReady()) return;
if (!platform.isRunning()) {
platform.resume();
console.log("Resumed");
@ -1491,6 +1491,7 @@ function _resume() {
}
function resume() {
if (!checkRunReady()) return;
clearBreakpoint();
if (! platform.isRunning() ) {
projectWindows.refresh(false);