Skip to content

Commit 771bf55

Browse files
committed
fix disappearing error markers
Fix issue where creating an error in DASM source and then clicking the error message would cause the error marker to disappear.
1 parent 63eeeff commit 771bf55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ide/windows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class ProjectWindows {
7171
this.refreshErrors();
7272
wnd.setVisible && wnd.setVisible(true);
7373
this.id2showfn[id] && this.id2showfn[id](id, wnd);
74-
} else {
74+
} else if (moveCursor) {
7575
this.refresh(moveCursor);
7676
}
7777
this.activeid = id;

0 commit comments

Comments
 (0)