Skip to content

Commit 88f4fcc

Browse files
committed
remove debug logging in 360: Cap Top & Bottom
1 parent 0005d89 commit 88f4fcc

File tree

1 file changed

+0
-7
lines changed
  • src/qml/filters/bigsh0t_eq_cap

1 file changed

+0
-7
lines changed

src/qml/filters/bigsh0t_eq_cap/ui.qml

-7
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,9 @@ Shotcut.KeyframableFilter {
246246
setControls();
247247
}
248248
function setControlsForAllParameters() {
249-
console.log("START");
250-
console.log(allParameters.length);
251249
for (var i = 0; i < allParameters.length; ++i) {
252-
console.log(i);
253250
var param = allParameters[i];
254251
var control = getControl(param);
255-
console.log(param.name);
256-
console.log(param.type);
257-
console.log(control);
258252
if (param.type == "simple") {
259253
setSimpleControl(param.name, control, getKeyframesButton(param));
260254
} else if (param.type == "static") {
@@ -280,7 +274,6 @@ Shotcut.KeyframableFilter {
280274
if (filter.isNew) {
281275
for (var i = 0; i < allParameters.length; ++i) {
282276
var param = allParameters[i];
283-
console.log(param.name);
284277
if (param.def != null) {
285278
var control = getControl(param);
286279
filter.set(param.name, param.def);

0 commit comments

Comments
 (0)