From 5b0572879d0a4d3e4884872348ce4fcfca2fdc52 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 23 Oct 2025 20:04:56 +0200 Subject: [PATCH] Update proxmox-dashboard.tsx --- AppImage/components/proxmox-dashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 264a444..c445a99 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -138,7 +138,7 @@ export function ProxmoxDashboard() { } else if (currentScrollY > lastScrollY + 20) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 20) { + } else if (currentScrollY < lastScrollY - 18) { // Scrolling up - show navigation setShowNavigation(true) } @@ -316,7 +316,7 @@ export function ProxmoxDashboard() {