diff --git a/ChangeLog b/ChangeLog index 7424afe931..2a518ce06d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-19 Manish Singh + + * plug-ins/pygimp/gimpfu.py: Actually return values from the run + function. Fixes #141338. + 2004-05-20 Sven Neumann * plug-ins/maze/maze_face.c diff --git a/plug-ins/pygimp/gimpfu.py b/plug-ins/pygimp/gimpfu.py index 970e1aed15..e7e1710353 100644 --- a/plug-ins/pygimp/gimpfu.py +++ b/plug-ins/pygimp/gimpfu.py @@ -468,7 +468,11 @@ def _run(func_name, params): params = start_params + tuple(extra_params) res = apply(func, params) - if run_mode != RUN_NONINTERACTIVE: gimp.displays_flush() + + if run_mode != RUN_NONINTERACTIVE: + gimp.displays_flush() + + return res def main(): '''This should be called after registering the plugin.'''