![]() |
script does not appears in Gimp3 filters - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +--- Thread: script does not appears in Gimp3 filters (/Thread-script-does-not-appears-in-Gimp3-filters) |
script does not appears in Gimp3 filters - Zydelum - 07-10-2025 Hi, On macOS, this minimalist Python script for Gimp3 doesn't appear in Gimp3 Filters I placed this script in Plugins and then made it executable. Why? Code: #!/usr/bin/env python3 RE: script does not appears in Gimp3 filters - CmykStudent - 07-10-2025 Zydelum: Hi! It's because of a bug in the code. Replace Code: Gimp.main(MinimalTest.get_type(), sys.argv) with Code: Gimp.main(MinimalTest.__gtype__, sys.argv) And it should work. RE: script does not appears in Gimp3 filters - Zydelum - 07-10-2025 (07-10-2025, 01:56 AM)CmykStudent Wrote: Zydelum: Hi! It's because of a bug in the code. Replace thanks ! problem solved because also i have forgotten to place file.py in sub-folder with the same files's name |