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-09-05 21:29:45 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-05 21:29:45 +0300
commitd2ab66195c47f33a76758b97669dd564ccde90b9 (patch)
tree8e34b946f3f2abd26b9314a9339d6ee45fef5dd8 /server
parenta975687d5f1348699ba32a0222d7f964bc94880b (diff)
Allow changing timeline item collapsed state.
Diffstat (limited to 'server')
-rw-r--r--server/TracyTimelineItem.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/TracyTimelineItem.hpp b/server/TracyTimelineItem.hpp
index 59652328..c08d911a 100644
--- a/server/TracyTimelineItem.hpp
+++ b/server/TracyTimelineItem.hpp
@@ -23,6 +23,8 @@ public:
virtual void SetVisible( bool visible ) { m_visible = visible; }
virtual bool IsVisible() const { return m_visible; }
+ void SetShowFull( bool showFull ) { m_showFull = showFull; }
+
protected:
virtual uint32_t HeaderColor() const = 0;
virtual uint32_t HeaderColorInactive() const = 0;