Add time range limit UI to statistics menu.

This commit is contained in:
Bartosz Taudul 2020-08-04 14:15:28 +02:00
parent a23f58cc8f
commit 9449f3ef89
2 changed files with 22 additions and 1 deletions

View File

@ -11727,6 +11727,24 @@ void View::DrawStatistics()
{
m_statisticsFilter.Clear();
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( ImGui::Checkbox( "Limit range", &m_statRange.active ) )
{
if( m_statRange.active && m_statRange.min == 0 && m_statRange.max == 0 )
{
m_statRange.min = m_vd.zvStart;
m_statRange.max = m_vd.zvEnd;
}
}
if( m_statRange.active )
{
ImGui::SameLine();
TextColoredUnformatted( 0xFF00FFFF, ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::SameLine();
ToggleButton( ICON_FA_RULER " Limits", m_showRanges );
}
ImGui::Separator();
ImGui::PopStyleVar();

View File

@ -353,7 +353,6 @@ private:
bool m_messagesScrollBottom;
ImGuiTextFilter m_messageFilter;
bool m_showMessageImages = false;
ImGuiTextFilter m_statisticsFilter;
int m_visibleMessages = 0;
size_t m_prevMessages = 0;
Vector<uint32_t> m_msgList;
@ -363,6 +362,10 @@ private:
Annotation* m_selectedAnnotation = nullptr;
bool m_reactToCrash = false;
ImGuiTextFilter m_statisticsFilter;
Range m_statRange;
RangeSlim m_statRangeSlim;
Region m_highlight;
Region m_highlightZoom;