(09-07-2020, 08:49 AM)tmanni Wrote: Can you post the enitre script ?
I suspect you forget to call gimp-image-delete before the end of the script.
Tmanni, you saved my day! This was my simplified script, and as you can see, the problem was indeed that I didn't call gimp-image-delete! I had almost forgotten about such issues with all these automatic garbage collectors that programming languages provide The issue can be assigned as closed Thank you so much for your time, people!
Code:
(define (test filename-in)
(let* ((image (car (gimp-file-load RUN-NONINTERACTIVE filename-in ""))))
(gimp-message "END!")
)
)
(script-fu-register "test"
_"test"
_"test"
"Test"
"Test"
"September 2020"
""
)
(script-fu-menu-register "test"
"<Image>/Test")