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