mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Feature: Temporal Color Smoothing with variable decay-rate for long period average windows (#1043)
* Feature: Weighted Moving Average Smoothing with Decay * fix assign * try fix MSVC error related to always inline on static * use proper imports for windows * crossplatform inline declaration
This commit is contained in:
@@ -184,7 +184,7 @@ function initLanguageSelection()
|
||||
for (var i = 0; i < availLang.length; i++)
|
||||
{
|
||||
$("#language-select").append('<option value="'+i+'" selected="">'+availLangText[i]+'</option>');
|
||||
}
|
||||
}
|
||||
|
||||
var langLocale = storedLang;
|
||||
|
||||
@@ -533,7 +533,7 @@ function createJsonEditor(container,schema,setconfig,usePanel,arrayre)
|
||||
{
|
||||
for(var key in editor.root.editors)
|
||||
{
|
||||
editor.getEditor("root."+key).setValue( window.serverConfig[key] );
|
||||
editor.getEditor("root."+key).setValue(Object.assign({}, editor.getEditor("root."+key).value, window.serverConfig[key] ));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user