Opened 14 years ago

Closed 14 years ago

#7802 closed patch (wontfix)

Patch to turn on/off prompting for play from bookmark for videos

Reported by: anonymous Owned by: Janne Grunau
Priority: minor Milestone: 0.22
Component: MythTV - Video Playback Version: 0.22-fixes
Severity: medium Keywords:
Cc: Ticket locked: no

Description

There is a setting to turn off the play from bookmark/play from beginning prompt for DVDs, but no such option for videos. This patch makes videos follow the same setting as DVDs, since the prompt is "DVD/Video contains a bookmark". This helps avoid losing focus playing videos because of the bug listed in ticket 6815.

Index: programs/mythfrontend/main.cpp =================================================================== --- programs/mythfrontend/main.cpp (revision 23007) +++ programs/mythfrontend/main.cpp (working copy) @@ -793,7 +793,7 @@

else if (pginfo->isVideo)

pos = pginfo->GetBookmark?();

  • if (pos > 0)

+ if (gContext->GetNumSetting?("DVDBookmarkPrompt", 0) && pos > 0)

{

QString msg = QObject::tr("DVD/Video contains a bookmark"); QString btn0msg = QObject::tr("Play from bookmark");

Attachments (1)

videoprompt.patch.txt (547 bytes) - added by anonymous 14 years ago.
Patch file

Download all attachments as: .zip

Change History (2)

Changed 14 years ago by anonymous

Attachment: videoprompt.patch.txt added

Patch file

comment:1 Changed 14 years ago by robertm

Resolution: wontfix
Status: newclosed

We're going to be going a different way with this code and this patch won't be applicable.

Note: See TracTickets for help on using tickets.