From d8454746444f04a3d9a35fba0b8e46c14fb837b8 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 23 Oct 2025 21:02:56 +0200 Subject: [PATCH] Update proxmox-dashboard.tsx --- AppImage/components/proxmox-dashboard.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 68fe1c8..848eb7a 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 + 20) { + } else if (currentScrollY > lastScrollY + 10) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 20) { + } else if (currentScrollY < lastScrollY - 12) { // Scrolling up - show navigation setShowNavigation(true) } @@ -316,9 +316,11 @@ export function ProxmoxDashboard() {