From 230400846fd7c67dcb89b6cfe1565d8718cba23b Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 23 Oct 2025 20:35:58 +0200 Subject: [PATCH] Update proxmox-dashboard.tsx --- AppImage/components/proxmox-dashboard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 8302de8..734466a 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 + 10) { + } else if (currentScrollY > lastScrollY + 20) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 14) { + } else if (currentScrollY < lastScrollY - 20) { // Scrolling up - show navigation setShowNavigation(true) } @@ -317,7 +317,7 @@ export function ProxmoxDashboard() {