From a23f58cc8f3414ca6d497f6d0af699f285e1dd12 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 4 Aug 2020 14:13:12 +0200 Subject: [PATCH] Add spacing in find zone menu. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 63d2f437..9a3bb74d 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -9030,6 +9030,8 @@ void View::DrawFindZone() ImGui::SameLine(); ImGui::Checkbox( "Ignore case", &m_findZone.ignoreCase ); ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); if( ImGui::Checkbox( "Limit range", &m_findZone.range.active ) ) { if( m_findZone.range.active && m_findZone.range.min == 0 && m_findZone.range.max == 0 )