Merge pull request #1113 from MrD-RC/add-control-smoothness-to-adjustments

Add control smoothness to adjustments
pull/1123/head
Paweł Spychalski 4 years ago committed by GitHub
commit 3dac217646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1403,6 +1403,9 @@
"adjustmentsFunction51": {
"message": "TPA Breakpoint Adjustment"
},
"adjustmentsFunction52": {
"message": "Control Smoothness Adjustment"
},
"adjustmentsSave": {
"message": "Save"
},

@ -116,6 +116,7 @@
<option value="49" i18n="adjustmentsFunction49"></option>
<option value="50" i18n="adjustmentsFunction50"></option>
<option value="51" i18n="adjustmentsFunction51"></option>
<option value="52" i18n="adjustmentsFunction52"></option>
</select></td>
<td class="adjustmentSlot"><select class="slot">
<option value="0" i18n="adjustmentsSlot0"></option>

@ -64,7 +64,7 @@ TABS.adjustments.initialize = function (callback) {
// update list of selected functions
var functionListOptions = $(functionList).find('option');
var availableFunctionCount = 52;
var availableFunctionCount = 53;
var functionListOptions = $(functionListOptions).slice(0,availableFunctionCount);
functionList.empty().append(functionListOptions);

@ -1546,6 +1546,11 @@ OSD.constants = {
id: 117,
preview: 'TPA 0\nBP 1500'
},
{
name: 'CONTROL_SMOOTHNESS',
id: 118,
preview: 'CTL S 3'
},
]
},
{

Loading…
Cancel
Save