Fixed: Crash when trying to navigate to non-existing #anchor

--HG--
branch : develop
feature/pipeline-tools
Nimetu 8 years ago
parent fa8e1d95db
commit 524f80c8a0

@ -5220,6 +5220,11 @@ namespace NLGUI
void CGroupHTML::doBrowseAnchor(const std::string &anchor)
{
if (_Anchors.count(anchor) == 0)
{
return;
}
CInterfaceElement *pIE = _Anchors.find(anchor)->second;
if (pIE)
{

Loading…
Cancel
Save