1
0
Fork 0

DBG: Fixed issue mentioned in comment to #2310 - force value refresh after watch expression change

This commit is contained in:
morsisko 2020-10-30 23:40:47 +01:00 committed by Duncan Ogilvie
parent 4d14fffc2f
commit b8db2b23e7
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ bool WatchExpr::modifyExpr(const char* expression, WATCHVARTYPE type)
{
expr = b;
varType = type;
currValue = 0;
this->getIntValue();
haveCurrValue = false;
return true;
}