mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
fix(ui): correct handling of bytes attribute when loading CSimpleEditBox XML
This commit is contained in:
parent
ad8cf56d29
commit
a3d87bfd56
@ -674,9 +674,9 @@ void CSimpleEditBox::LoadXML(XMLNode* node, CStatus* status) {
|
||||
int32_t bytes = SStrToInt(bytesAttr);
|
||||
|
||||
if (bytes <= 0) {
|
||||
this->m_textLength = -1;
|
||||
this->m_textLengthMax = -1;
|
||||
} else {
|
||||
this->m_textLength = bytes - 1;
|
||||
this->m_textLengthMax = bytes - 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user