From 998b76cefd1e7f0ee851e2b7418e5cd74ea256b9 Mon Sep 17 00:00:00 2001 From: Stu Date: Tue, 9 Dec 2025 12:40:33 -0500 Subject: [PATCH] Hide playlist by default - make fullscreen video player the default view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed playlist visibility from auto-showing when multiple videos to hidden by default. Users can toggle it with the menu (☰) button. This gives a cleaner video player experience without the playlist taking up screen space. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 4000334..a6995b0 100644 --- a/main.go +++ b/main.go @@ -738,7 +738,8 @@ func (s *appState) showPlayerView() { ) playlistContainer.Resize(fyne.NewSize(250, 540)) - var playlistVisible bool = len(s.loadedVideos) > 1 + // Playlist starts hidden by default - user can toggle with menu button + var playlistVisible bool = false var mainContent *fyne.Container if playlistVisible {