From 4b5b2ebd2ffc64887d18bd426f13c4f2a012e7c8 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Thu, 5 Feb 2026 12:50:17 -0800 Subject: [PATCH] PerformanceMetrics: Add padding below graph Add vertical padding between the performance graph (when it's enabled) and the FPS/VPS/Speed overlays. --- Source/Core/VideoCommon/PerformanceMetrics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/PerformanceMetrics.cpp b/Source/Core/VideoCommon/PerformanceMetrics.cpp index d00e5dbbba..8b47db53c3 100644 --- a/Source/Core/VideoCommon/PerformanceMetrics.cpp +++ b/Source/Core/VideoCommon/PerformanceMetrics.cpp @@ -211,7 +211,7 @@ void PerformanceMetrics::DrawImGuiStats(const float backbuffer_scale) 2000.0}; clamp_window_position(); - window_y += ImGui::GetWindowHeight(); + window_y += ImGui::GetWindowHeight() + window_padding; const DT vblank_time = m_vps_counter.GetDtAvg() + 2 * m_vps_counter.GetDtStd(); const DT frame_time = m_fps_counter.GetDtAvg() + 2 * m_fps_counter.GetDtStd();