Merge branch 'master' into nightly

This commit is contained in:
Vortrex
2022-04-28 12:05:56 -05:00
8 changed files with 528 additions and 152 deletions

View File

@@ -377,11 +377,12 @@ function getElementDimension(element) {
// ===========================================================================
function setElementDimension(element, dimension) {
if(typeof element.dimension != "undefined") {
element.dimension = dimension;
return true;
}
return false;
if(typeof element.dimension != "undefined") {
logToConsole(LOG_DEBUG, `Setting element ${element} (${element.id}) dimension to ${dimension}`);
element.dimension = dimension;
return true;
}
return false;
}
// ===========================================================================