mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-17 00:47:05 +00:00
Changed double-click behavior in the POI list dialog, readded and fixed error message for incorrect struct property count in SCLY
This commit is contained in:
@@ -16,10 +16,20 @@ bool IPropertyTemplate::IsInVersion(u32 Version) const
|
||||
|
||||
TIDString IPropertyTemplate::IDString(bool FullPath) const
|
||||
{
|
||||
TIDString out;
|
||||
if (mpParent && FullPath) out = mpParent->IDString(true) + ":";
|
||||
out += TIDString::HexString(mID, true, true, 8);
|
||||
return out;
|
||||
if (mID != 0xFFFFFFFF)
|
||||
{
|
||||
TIDString out;
|
||||
|
||||
if (mpParent && FullPath)
|
||||
{
|
||||
out = mpParent->IDString(true);
|
||||
if (!out.IsEmpty()) out += ":";
|
||||
}
|
||||
|
||||
out += TIDString::HexString(mID, true, true, 8);
|
||||
return out;
|
||||
}
|
||||
else return "";
|
||||
}
|
||||
|
||||
CStructTemplate* IPropertyTemplate::RootStruct()
|
||||
|
||||
Reference in New Issue
Block a user