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 20:49:13 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-26 20:49:13 +0300
commitfbf0d47c1c828a4d7e342911183d481bc1774741 (patch)
treeef44182fae082599ce286f763fba0ebbe47b2694 /server
parent762b3a810a26b40fda8e319d4bd307d651b80b57 (diff)
Condense some text labels.
Diffstat (limited to 'server')
-rw-r--r--server/TracySourceView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp
index 9aa33a4f..d9718fac 100644
--- a/server/TracySourceView.cpp
+++ b/server/TracySourceView.cpp
@@ -1369,7 +1369,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
ImGui::SameLine();
ImGui::RadioButton( "Assembly", &m_displayMode, DisplayAsm );
ImGui::SameLine();
- ImGui::RadioButton( "Combined", &m_displayMode, DisplayMixed );
+ ImGui::RadioButton( "Both", &m_displayMode, DisplayMixed );
}
}
else
@@ -1429,7 +1429,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
ImGui::SameLine();
if( worker.GetHwSampleCountAddress() != 0 )
{
- SmallCheckbox( ICON_FA_HAMMER " Hw samples", &m_hwSamples );
+ SmallCheckbox( ICON_FA_HAMMER " HW", &m_hwSamples );
ImGui::SameLine();
SmallCheckbox( ICON_FA_CAR_BURST " Impact", &m_hwSamplesRelative );
ImGui::SameLine();