Skip to content

Commit 4fba2f7

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 d247dbc commit 4fba2f7

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
@@ -68,7 +68,7 @@ export class ProjectWindows {
6868
this.refreshErrors();
6969
wnd.setVisible && wnd.setVisible(true);
7070
this.id2showfn[id] && this.id2showfn[id](id, wnd);
71-
} else {
71+
} else if (moveCursor) {
7272
this.refresh(moveCursor);
7373
}
7474
this.activeid = id;

0 commit comments

Comments
 (0)