mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 13:01:42 +00:00
CDBViewQuantity shouldn't crash in the editor.
This commit is contained in:
parent
173bf9e773
commit
b6c9cc5498
1 changed files with 10 additions and 7 deletions
|
@ -157,14 +157,17 @@ namespace NLGUI
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CDBViewQuantity::draw ()
|
void CDBViewQuantity::draw ()
|
||||||
{
|
{
|
||||||
// change text
|
if( _Number.hasValue() && _NumberMax.hasValue() )
|
||||||
sint32 val= _Number.getSInt32();
|
|
||||||
sint32 valMax= _NumberMax.getSInt32();
|
|
||||||
if(_Cache!=val || _CacheMax!=valMax)
|
|
||||||
{
|
{
|
||||||
_Cache= val;
|
// change text
|
||||||
_CacheMax=valMax;
|
sint32 val= _Number.getSInt32();
|
||||||
buildTextFromCache();
|
sint32 valMax= _NumberMax.getSInt32();
|
||||||
|
if(_Cache!=val || _CacheMax!=valMax)
|
||||||
|
{
|
||||||
|
_Cache= val;
|
||||||
|
_CacheMax=valMax;
|
||||||
|
buildTextFromCache();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// parent call
|
// parent call
|
||||||
|
|
Loading…
Reference in a new issue