diff --git a/server/TracyView.cpp b/server/TracyView.cpp index b458f2be..ab76a1b1 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3653,6 +3653,7 @@ void View::DrawStatistics() template void View::ListMemData( T ptr, T end, std::function DrawAddress ) { + ImGui::BeginChild( "##memScroll", ImVec2( 0, std::max( 200.f, ImGui::GetContentRegionAvail().y ) ) ); ImGui::Columns( 7 ); ImGui::Text( "Address" ); ImGui::NextColumn(); @@ -3797,6 +3798,7 @@ void View::ListMemData( T ptr, T end, std::function DrawAddress ) ptr++; } ImGui::EndColumns(); + ImGui::EndChild(); } void View::DrawMemory()