コード例 #1
0
        public override void Refresh()
        {
            var eventDebuggerModificationCount = m_Debugger.GetModificationCount(panel);

            if (eventDebuggerModificationCount == m_ModificationCount)
            {
                return;
            }
            m_ModificationCount = eventDebuggerModificationCount;

            UpdateEventsLog();
            UpdateLogCount();
            UpdateSelectionCount();
            UpdateReplaySelectedEventsButton();
            DisplayHistogram(m_EventsHistogramScrollView);
            DisplayTimeline(m_EventTimelineScrollView);
        }