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>2021-11-27 17:40:23 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-11-27 17:40:23 +0300
commita84fd26ecbd2fee7b9d2eedb341e9be8bbbf387e (patch)
tree8bede97286826aba0208d651cfe538cb9802fdc8
parent11a8f30ff9622f52424b32310832fd7e0e19ff15 (diff)
Change toggle button to faux drop down.
-rw-r--r--server/TracySourceView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp
index a516327a..a0bf2355 100644
--- a/server/TracySourceView.cpp
+++ b/server/TracySourceView.cpp
@@ -1335,7 +1335,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
}
}
ImGui::SameLine();
- SmallToggleButton( ICON_FA_EYE, m_childCallList );
+ if( ImGui::SmallButton( m_childCallList ? " " ICON_FA_CARET_UP " " : " " ICON_FA_CARET_DOWN " " ) ) m_childCallList = !m_childCallList;
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();