Skip to content

Commit 511b6ff

Browse files
authored
Merge pull request #174 from intel/fix_scale_for_superresolution
Fix the + / - button for SR
2 parents a486351 + 42fdc9e commit 511b6ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gimpopenvino/plugins/superresolution_ov/superresolution_ov.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def run(procedure, run_mode, image, layer, config, data):
257257
grid.attach(label, 0, 2, 1, 1)
258258
label.show()
259259
spin = GimpUi.prop_spin_button_new(
260-
config, "scale", step_increment=0.01, page_increment=0.1, digits=2
260+
config, "scale", step_increment=1, page_increment=0.1, digits=2
261261
)
262262
grid.attach(spin, 1, 2, 1, 1)
263263
spin.show()

0 commit comments

Comments
 (0)