Remove constraint in AUP importer for "h" attribute

This commit is contained in:
Leland Lucius 2021-02-01 11:24:42 -06:00
parent fcfca160c3
commit c0a8537880
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ bool AUPImportFileHandle::HandleProject(XMLTagHandler *&handler)
}
else if (!wxStrcmp(attr, wxT("h")))
{
if (!Internat::CompatibleToDouble(value, &dValue) || (dValue < 0.0))
if (!Internat::CompatibleToDouble(value, &dValue))
{
return SetError(XO("Invalid project 'h' attribute."));
}