Merge pull request #404 from ProfYaffle/master

dvr.js: Adjust option spacing as per comment in PR 396
This commit is contained in:
perexg 2014-05-27 08:14:44 +02:00
commit dc666d9486

View file

@ -831,7 +831,7 @@ tvheadend.dvrsettings = function() {
displayField: 'description',
valueField: 'name',
editable: false,
width: 200,
width: 350,
hiddenName: 'container'
});
@ -842,7 +842,7 @@ tvheadend.dvrsettings = function() {
displayField: 'description',
valueField: 'index',
editable: false,
width: 200,
width: 350,
hiddenName: 'cache'
});
@ -867,7 +867,7 @@ tvheadend.dvrsettings = function() {
});
var postProcessing = new Ext.form.TextField({
width: 300,
width: 350,
fieldLabel: 'Post-processor command',
name: 'postproc'
});
@ -875,7 +875,7 @@ tvheadend.dvrsettings = function() {
/* Recording File Options */
var recordingPath = new Ext.form.TextField({
width: 300,
width: 350,
fieldLabel: 'Recording system path',
name: 'storage'
});
@ -885,7 +885,7 @@ tvheadend.dvrsettings = function() {
var recordingPermissions = new Ext.form.TextField({
regex: /^[0][0-7]{3}$/,
maskRe: /[0-7]/,
width: 100,
width: 125,
allowBlank: false,
blankText: 'You must provide a value - use octal chmod notation, e.g. 0664',
fieldLabel: 'File permissions (octal, e.g. 0664)',
@ -932,7 +932,7 @@ tvheadend.dvrsettings = function() {
var directoryPermissions = new Ext.form.TextField({
regex: /^[0][0-7]{3}$/,
maskRe: /[0-7]/,
width: 100,
width: 125,
allowBlank: false,
blankText: 'You must provide a value - use octal chmod notation, e.g. 0775',
fieldLabel: 'Directory permissions (octal, e.g. 0775)',
@ -1067,7 +1067,7 @@ tvheadend.dvrsettings = function() {
bodyStyle: 'padding:15px',
anchor: '100% 50%',
labelAlign: 'right',
labelWidth: 250,
labelWidth: 300,
autoScroll: true,
waitMsgTarget: true,
reader: confreader,