Popup a warning message about disk space consumption if the 'dump dvb mux' checkbox is enabled.
We are supposed to be user friendly after all :)
This commit is contained in:
parent
d8a0392275
commit
57f9e7e1fe
1 changed files with 8 additions and 1 deletions
|
@ -1040,7 +1040,14 @@ tvheadend.dvb_adapter_general = function(adapterData, satConfStore) {
|
|||
}),
|
||||
new Ext.form.Checkbox({
|
||||
fieldLabel: 'Write full DVB MUX to disk',
|
||||
name: 'dumpmux'
|
||||
name: 'dumpmux',
|
||||
handler: function(s, v) {
|
||||
if(v)
|
||||
Ext.MessageBox.alert('DVB Mux dump',
|
||||
'Please note that keeping this ' +
|
||||
'option enabled can consume a lot ' +
|
||||
'of diskspace. You have been warned');
|
||||
}
|
||||
}),
|
||||
{
|
||||
fieldLabel: 'NIT-o Network ID',
|
||||
|
|
Loading…
Add table
Reference in a new issue