diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1bcf4e52..c094d5e6 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -966,7 +966,7 @@ void View::DrawImpl() } std::lock_guard lock( m_lock ); - ImGui::Begin( m_captureName.c_str(), nullptr, ImGuiWindowFlags_ShowBorders ); + ImGui::Begin( m_captureName.c_str(), nullptr, ImGuiWindowFlags_ShowBorders | ImGuiWindowFlags_NoScrollbar ); if( ImGui::Button( m_pause ? "Resume" : "Pause", ImVec2( 80, 0 ) ) ) m_pause = !m_pause; ImGui::SameLine(); ImGui::Text( "Frames: %-7" PRIu64 " Time span: %-10s View span: %-10s Zones: %-10" PRIu64" Queue delay: %s Timer resolution: %s", m_frames.size(), TimeToString( GetLastTime() - m_frames[0] ), TimeToString( m_zvEnd - m_zvStart ), m_zonesCnt, TimeToString( m_delay ), TimeToString( m_resolution ) );