Provide informational text in the actions panel if the user tries to create an illegal identifier (closes #2289)

This commit is contained in:
Alexander Bock
2023-02-27 18:25:20 +01:00
parent 35a92b6e4d
commit 7b78a33df3
3 changed files with 70 additions and 43 deletions

View File

@@ -125,7 +125,7 @@ PropertyOwner::PropertyOwner(PropertyOwnerInfo info)
);
ghoul_precondition(
_identifier.find_first_of('.') == std::string::npos,
"Identifier must contain any whitespaces"
"Identifier must contain any dots"
);
}