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:
parent
eb2a7a4297
commit
998b76cefd
3
main.go
3
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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user