remove control init video/batch/folder

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-04-29 08:36:10 +02:00
parent 60143027a0
commit d9d1d92791
4 changed files with 6 additions and 14 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ function controlInputMode(inputMode, ...args) {
log('controlInputMode', { mode: inputMode, tab: inputTab, kanvas: typeof Kanvas });
if ((inputTab === 'Image') && (typeof 'Kanvas' !== 'undefined')) {
inputTab = 'Kanvas';
const imageData = window.kanvas.getImage();
args[0] = imageData;
args[0] = window.kanvas.getImage();
args[1] = window.kanvas.getImage(); // TODO support separate control
}
return [inputTab, ...args];
}