Add tip about centering timeline on message.

This commit is contained in:
Bartosz Taudul 2018-06-22 20:23:56 +02:00
parent 39eccd5b08
commit 5f5fe7c6aa

View File

@ -3363,6 +3363,14 @@ void View::DrawMessages()
ImGui::Begin( "Messages", &m_showMessages );
ImGui::Columns( 3 );
ImGui::Text( "Time" );
ImGui::SameLine();
ImGui::TextDisabled( "(?)" );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
ImGui::Text( "Click on message to center timeline on it." );
ImGui::EndTooltip();
}
ImGui::NextColumn();
ImGui::Text( "Thread" );
ImGui::NextColumn();