mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-30 01:04:36 +00:00
Add tip about centering timeline on message.
This commit is contained in:
parent
39eccd5b08
commit
5f5fe7c6aa
@ -3363,6 +3363,14 @@ void View::DrawMessages()
|
|||||||
ImGui::Begin( "Messages", &m_showMessages );
|
ImGui::Begin( "Messages", &m_showMessages );
|
||||||
ImGui::Columns( 3 );
|
ImGui::Columns( 3 );
|
||||||
ImGui::Text( "Time" );
|
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::NextColumn();
|
||||||
ImGui::Text( "Thread" );
|
ImGui::Text( "Thread" );
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
|
Loading…
Reference in New Issue
Block a user