From 0e9c8127b03c5a58fcab32b59c98f7aafb2c1595 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 3 May 2017 14:05:00 +0100 Subject: [PATCH] Default m_TimeUnit to invalid so that UpdateDurationColumn runs 1st time --- qrenderdoc/Windows/EventBrowser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/Windows/EventBrowser.h b/qrenderdoc/Windows/EventBrowser.h index 1b3213296..b71a159f5 100644 --- a/qrenderdoc/Windows/EventBrowser.h +++ b/qrenderdoc/Windows/EventBrowser.h @@ -119,7 +119,7 @@ private: void ExportDrawcall(QTextStream &writer, int maxNameLength, int indent, bool firstchild, const DrawcallDescription &drawcall); - TimeUnit m_TimeUnit = TimeUnit::Microseconds; + TimeUnit m_TimeUnit = TimeUnit::Count; rdctype::array m_Times;