Fix a crash getting the event name of EID 0

This commit is contained in:
baldurk
2021-08-24 19:00:05 +01:00
parent f258261a21
commit fe50a5674a
+3
View File
@@ -1126,6 +1126,9 @@ private:
if(it != m_EIDNameCache.end())
return it.value();
if(eid == 0)
return tr("Capture Start");
const ActionDescription *action = m_Actions[eid];
QString name;