From 330484eba139be744771b70df46606aa9fd34f9d Mon Sep 17 00:00:00 2001 From: Albert Armea Date: Sat, 27 Dec 2025 12:15:06 -0500 Subject: [PATCH] Make the HUD visible all the time --- crates/shepherd-hud/src/state.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/shepherd-hud/src/state.rs b/crates/shepherd-hud/src/state.rs index 84f2ef9..9f72494 100644 --- a/crates/shepherd-hud/src/state.rs +++ b/crates/shepherd-hud/src/state.rs @@ -41,12 +41,12 @@ pub enum SessionState { } impl SessionState { - /// Check if there's an active or warning session + /// Check if the HUD should be visible + /// The HUD is always visible - it shows session info when active, + /// or a minimal bar when no session pub fn is_visible(&self) -> bool { - matches!( - self, - SessionState::Active { .. } | SessionState::Warning { .. } | SessionState::Ending { .. } - ) + // Always show the HUD + true } /// Get the current session ID if any