Opened 20 years ago
Closed 20 years ago
#233 closed defect (fixed)
Save .nuv.old is global setting, not host-specific
Reported by: | anonymous | Owned by: | Isaac Richards |
---|---|---|---|
Priority: | minor | Milestone: | unknown |
Component: | mythtv | Version: | head |
Severity: | low | Keywords: | |
Cc: | Ticket locked: | no |
Description
A tiny patch to clarify this setting which appears on the "host specific backend settings" page, but appears to be actually a global setting.
Index: setup/backendsettings.cpp =================================================================== --- setup/backendsettings.cpp (revision 7089) +++ setup/backendsettings.cpp (working copy) @@ -163,7 +163,7 @@
static GlobalCheckBox? *SaveTranscoding?() {
GlobalCheckBox? *gc = new GlobalCheckBox?("SaveTranscoding?");
- gc->setLabel(QObject::tr("Save original files after transcoding"));
+ gc->setLabel(QObject::tr("Save original files after transcoding (all backends)"));
gc->setValue(false); gc->setHelpText(QObject::tr("When set and the transcoder is active, the "
"original nuv files will be renamed to nuv.old once the "
(In [7138]) Clarify a setting text. Closes #233.