mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 16:22: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);
|
int32_t bytes = SStrToInt(bytesAttr);
|
||||||
|
|
||||||
if (bytes <= 0) {
|
if (bytes <= 0) {
|
||||||
this->m_textLength = -1;
|
this->m_textLengthMax = -1;
|
||||||
} else {
|
} else {
|
||||||
this->m_textLength = bytes - 1;
|
this->m_textLengthMax = bytes - 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user