Middle-click on message marker to center on it.

This commit is contained in:
Bartosz Taudul 2018-08-05 16:47:27 +02:00
parent 1d0203ac17
commit 1d6f388a81

View File

@ -1377,6 +1377,11 @@ void View::DrawZones()
}
ImGui::EndTooltip();
m_msgHighlight = *it;
if( ImGui::IsMouseClicked( 2 ) )
{
CenterAtTime( (*it)->time );
}
}
it = next;
}