Zoom-to-zone on middle click on found item.

This commit is contained in:
Bartosz Taudul 2018-03-04 18:35:40 +01:00
parent 5cb917e868
commit a7e7f59f96

View File

@ -2970,6 +2970,10 @@ void View::DrawFindZone()
{
m_zoneInfoWindow = ev;
}
else if( ImGui::IsItemHovered() && ImGui::GetIO().MouseClicked[2] )
{
ZoomToZone( *ev );
}
ImGui::NextColumn();