DBG: fixed ignored exceptions (when deleting everything, the list is cleared)
GUI: fixed ignored exceptions (delete last now works)
This commit is contained in:
parent
ddf8d59742
commit
b31ff8256b
|
|
@ -660,9 +660,9 @@ extern "C" DLL_EXPORT uint _dbg_sendmessage(DBGMSG type, void* param1, void* par
|
|||
}
|
||||
}
|
||||
char exceptionRange[MAX_SETTING_SIZE]="";
|
||||
dbgclearignoredexceptions();
|
||||
if(BridgeSettingGet("Exceptions", "IgnoreRange", exceptionRange))
|
||||
{
|
||||
dbgclearignoredexceptions();
|
||||
char* entry=strtok(exceptionRange, ",");
|
||||
while(entry)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -165,6 +165,8 @@ void SettingsDialog::SaveSettings()
|
|||
exceptionRange.chop(1); //remove last comma
|
||||
if(exceptionRange.size())
|
||||
BridgeSettingSet("Exceptions", "IgnoreRange", exceptionRange.toUtf8().constData());
|
||||
else
|
||||
BridgeSettingSet("Exceptions", "IgnoreRange", "");
|
||||
|
||||
DbgSettingsUpdated();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue