02-09-2026, 10:54 PM
Plug-in is working correctly in GIMP 3.0 on Debian Trixie, but due to a recent update, XSane's preview window bugs out. Reading up on this, the workaround is to issue the --sync option when calling xsane. To get this to work with the plug-in, I had to add this argument to the args in line 52 of the Python code.
args = ['xsane', '--save', '--no-mode-selection', '--force-filename', png_out, '--print-filenames', '--sync'] ...
args = ['xsane', '--save', '--no-mode-selection', '--force-filename', png_out, '--print-filenames', '--sync'] ...
