Skip to content

Commit

Permalink
- fix #409
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Sep 23, 2023
1 parent 8f8845a commit 2ea141f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hi_scripting/scripting/components/PopupEditors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,8 @@ void PopupIncludeEditor::runTimeErrorsOccured(PopupIncludeEditor& t, Array<Exter
if (matchesFile)
asmcl->editor.addWarning(e.toString(), false);

t.bottomBar->setError("GLSL Compile Error");
if(t.bottomBar != nullptr)
t.bottomBar->setError("GLSL Compile Error");
}
}

Expand Down

0 comments on commit 2ea141f

Please sign in to comment.