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
path: root/server
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-26 22:33:07 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-26 22:33:07 +0300
commit19e36f5e809add817a527e4a76c934e01e06676a (patch)
treef9973e77a96cc93dd3c76f056853af3b1617205f /server
parentfbf0d47c1c828a4d7e342911183d481bc1774741 (diff)
Condense some more.
Diffstat (limited to 'server')
-rw-r--r--server/TracySourceView.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp
index d9718fac..1d725899 100644
--- a/server/TracySourceView.cpp
+++ b/server/TracySourceView.cpp
@@ -2346,18 +2346,18 @@ uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker
}
ImGui::SameLine();
}
- SmallCheckbox( ICON_FA_MAGNIFYING_GLASS_LOCATION " Relative loc.", &m_asmRelative );
+ SmallCheckbox( ICON_FA_MAGNIFYING_GLASS_LOCATION " Relative", &m_asmRelative );
if( !m_sourceFiles.empty() )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
- SmallCheckbox( ICON_FA_FILE_IMPORT " Source loc.", &m_asmShowSourceLocation );
+ SmallCheckbox( ICON_FA_FILE_IMPORT " Source", &m_asmShowSourceLocation );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
- SmallCheckbox( ICON_FA_GEARS " Machine code", &m_asmBytes );
+ SmallCheckbox( ICON_FA_GEARS " Raw code", &m_asmBytes );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();