From 2cd603357d7b02512a682951d768cec357663872 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 23 Oct 2025 20:22:12 +0200 Subject: [PATCH] Update proxmox-dashboard.tsx --- AppImage/components/proxmox-dashboard.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 58763f9..162676b 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -135,10 +135,10 @@ export function ProxmoxDashboard() { if (currentScrollY < 100) { setShowNavigation(true) - } else if (currentScrollY > lastScrollY + 14) { + } else if (currentScrollY > lastScrollY + 12) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 16) { + } else if (currentScrollY < lastScrollY - 14) { // Scrolling up - show navigation setShowNavigation(true) } @@ -316,8 +316,8 @@ export function ProxmoxDashboard() {