Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-26 20:40:30 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-26 20:40:30 +0300
commit762b3a810a26b40fda8e319d4bd307d651b80b57 (patch)
treed1bcf9e3f520e0e3e7a9533195fd40aa068df5f0
parent0eef0a8313d5fb9c91178907d2d39e8d2c97bbdf (diff)
Smaller font for symbol image name.
-rw-r--r--server/TracySourceView.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp
index 35ffc1ba..9aa33a4f 100644
--- a/server/TracySourceView.cpp
+++ b/server/TracySourceView.cpp
@@ -1175,10 +1175,11 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
}
}
ImGui::SameLine();
+ ImGui::PopFont();
+ ImGui::AlignTextToFramePadding();
TextDisabledUnformatted( worker.GetString( sym->imageName ) );
ImGui::SameLine();
ImGui::TextDisabled( "0x%" PRIx64, m_baseAddr );
- ImGui::PopFont();
if( ImGui::IsKeyDown( ImGuiKey_Z ) ) m_childCalls = !m_childCalls;
if( ImGui::IsKeyDown( ImGuiKey_X ) ) m_propagateInlines = !m_propagateInlines;