setValue instead of set_value

This commit is contained in:
Aylur
2023-06-27 17:11:18 +02:00
parent 96f0feee61
commit d9c354d2c9
+1 -1
View File
@@ -396,6 +396,6 @@ export function ProgressBar({ type, inverted, orientation, ...rest }) {
inverted,
});
bar.set_value = v => bar.set_fraction(v/100);
bar.setValue = v => bar.set_fraction(v/100);
return bar;
}