Use setScale instead of setStreamScale when applying scaling on layout change. Fixes image having wrong proportions.

pull/3698/head
Isaac Connor 2023-04-27 10:44:00 -04:00
parent a608b18e8b
commit b5cfaef7b9
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ function selectLayout(new_layout_id) {
}
for (let i = 0, length = monitors.length; i < length; i++) {
monitors[i].setStreamScale();
monitors[i].setScale( $j('#scale').val(), $j('#width').val(), $j('#height').val());
} // end foreach monitor
} // end function selectLayout(element)