Hide playlist by default - make fullscreen video player the default view

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 <noreply@anthropic.com>
This commit is contained in:
Stu 2025-12-09 12:40:33 -05:00
parent eb2a7a4297
commit 998b76cefd

View File

@ -738,7 +738,8 @@ func (s *appState) showPlayerView() {
) )
playlistContainer.Resize(fyne.NewSize(250, 540)) 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 var mainContent *fyne.Container
if playlistVisible { if playlistVisible {