mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Add hints to input text fields.
This commit is contained in:
parent
476287b5f2
commit
6a36bb2fc2
@ -289,7 +289,7 @@ int main( int argc, char** argv )
|
|||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
ImGui::TextUnformatted( "Connect to client" );
|
ImGui::TextUnformatted( "Connect to client" );
|
||||||
bool connectClicked = false;
|
bool connectClicked = false;
|
||||||
connectClicked |= ImGui::InputText( "", addr, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
connectClicked |= ImGui::InputTextWithHint( "", "Enter address", addr, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
||||||
if( !connHistVec.empty() )
|
if( !connHistVec.empty() )
|
||||||
{
|
{
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
@ -5668,7 +5668,7 @@ void View::DrawFindZone()
|
|||||||
ImGui::SetKeyboardFocusHere();
|
ImGui::SetKeyboardFocusHere();
|
||||||
m_shortcut = ShortcutAction::None;
|
m_shortcut = ShortcutAction::None;
|
||||||
}
|
}
|
||||||
findClicked |= ImGui::InputText( "", m_findZone.pattern, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
findClicked |= ImGui::InputTextWithHint( "", "Enter zone name to search for", m_findZone.pattern, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
||||||
ImGui::PopItemWidth();
|
ImGui::PopItemWidth();
|
||||||
|
|
||||||
#ifdef TRACY_EXTENDED_FONT
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
@ -6885,7 +6885,7 @@ void View::DrawCompare()
|
|||||||
bool findClicked = false;
|
bool findClicked = false;
|
||||||
|
|
||||||
ImGui::PushItemWidth( -0.01f );
|
ImGui::PushItemWidth( -0.01f );
|
||||||
findClicked |= ImGui::InputText( "", m_compare.pattern, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
findClicked |= ImGui::InputTextWithHint( "", "Enter zone name to search for", m_compare.pattern, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
|
||||||
ImGui::PopItemWidth();
|
ImGui::PopItemWidth();
|
||||||
|
|
||||||
#ifdef TRACY_EXTENDED_FONT
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
@ -8936,7 +8936,7 @@ void View::DrawMemory()
|
|||||||
if( ImGui::TreeNode( "Allocations" ) )
|
if( ImGui::TreeNode( "Allocations" ) )
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
ImGui::InputText( "###address", m_memInfo.pattern, 1024 );
|
ImGui::InputTextWithHint( "###address", "Enter memory address to search for", m_memInfo.pattern, 1024 );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
|
||||||
#ifdef TRACY_EXTENDED_FONT
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
|
Loading…
Reference in New Issue
Block a user