Skip to content

Commit

Permalink
Merge branch 'master' of [email protected]:nl-utwente-groove/code.git
Browse files Browse the repository at this point in the history
Best I can do for gh issue #773
  • Loading branch information
rensink committed Jun 30, 2024
1 parent 7251560 commit f577377
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,8 @@ final public Icon getListIcon(QualName name) {
* tab component.
*/
public final String getLabelText(QualName name) {
return getLabelText(name, "", getResource(name).isActive());
var model = getResource(name);
return getLabelText(name, "", model != null && model.isActive());
}

/**
Expand Down

0 comments on commit f577377

Please sign in to comment.