plug-ins: register thumbnail procedures before load procedures

so registering the thumbnail loader with the load procedure can
perform some checks for procedure existence and signature.
This commit is contained in:
Michael Natterer
2019-09-10 19:36:54 +02:00
parent 5621de52fc
commit 26a744f44d
10 changed files with 11 additions and 11 deletions

View File

@ -357,9 +357,9 @@ class FileOpenRaster (Gimp.PlugIn):
self.set_translation_domain("gimp30-python",
Gio.file_new_for_path(Gimp.locale_directory()))
return [ 'file-openraster-save',
return [ 'file-openraster-load-thumb',
'file-openraster-load',
'file-openraster-load-thumb' ]
'file-openraster-save' ]
def do_create_procedure(self, name):
if name == 'file-openraster-save':