Add notice that chapter names are for future DVD menu support

Added italic note "(For future DVD menus)" below chapter title entry
fields to inform users that:
- Chapter markers work and allow navigation between scenes
- Chapter names are saved but not displayed in basic DVDs
- Names will be used when DVD menu system is implemented

This prevents users from wasting time entering custom chapter names
expecting them to appear in DVD players, while preserving the data
for future menu implementation.

🤖 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 Leak 2025-12-30 21:39:37 -05:00
parent 11b5fae23d
commit 673e914f5e

View File

@ -217,6 +217,11 @@ func buildVideoClipsTab(state *appState) fyne.CanvasObject {
}
}
// Note about chapter names for future menu support
noteLabel := widget.NewLabel("(For future DVD menus)")
noteLabel.TextStyle = fyne.TextStyle{Italic: true}
noteLabel.Alignment = fyne.TextAlignLeading
removeBtn := widget.NewButton("Remove", func() {
state.authorClips = append(state.authorClips[:idx], state.authorClips[idx+1:]...)
rebuildList()
@ -229,7 +234,7 @@ func buildVideoClipsTab(state *appState) fyne.CanvasObject {
nil,
nil,
container.NewVBox(durationLabel, removeBtn),
container.NewVBox(nameLabel, titleEntry),
container.NewVBox(nameLabel, titleEntry, noteLabel),
)
cardBg := canvas.NewRectangle(utils.MustHex("#171C2A"))
cardBg.CornerRadius = 6