Skip to content

Commit

Permalink
Merge pull request #217 from egonw/fix/noFullName
Browse files Browse the repository at this point in the history
[PV3.4] Fixes a exception that blocks closing the property dialog
  • Loading branch information
mkutmon authored Jan 22, 2025
2 parents bf232c0 + b82db44 commit 8c418c9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,9 @@ public void setStaticProperty(StaticProperty key, Object value)
}
else
{
setDataSource(DataSource.getExistingByFullName((String)value));
if (DataSource.fullNameExists((String)value)) {
setDataSource(DataSource.getExistingByFullName((String)value));
}
}
break;
case TYPE:
Expand Down

0 comments on commit 8c418c9

Please sign in to comment.