This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.5 KiB

Channel Tools

The remove halo feature is now at: https://github.com/poikilos/channel_tools.git

[git] - 2020-02-19

Removed

register(
    "python_fu_remove_halo",
    "Remove Halo",
    "Remove alpha",
    "Jake Gustafson", "Jake Gustafson", "2020",
    "Remove Halo",  # caption
    "RGBA",  # RGB* would mean with or without alpha.
    [
        (PF_SPINNER, "threshold", "Minimum alpha to fix", 254, (0, 255, 1)),
        (PF_BOOL, "make_opaque", "Make the fixed parts opaque.", True),
        (PF_DRAWABLE, "drawable", "Input layer", None),
    ],
    [],
    remove_layer_halo,
    menu="<Image>/Layer"
)
register(
    "python_fu_remove_halo",
    "Remove Halo",
    "Remove Halo (Redo the edge)",
    "Jake Gustafson",
    "Jake Gustafson",
    "2020",
    "<Image>/Layer",
    "RGBA",  # RGB* would mean with or without alpha.
    [
        (PF_SPINNER, "threshold", "Minimum alpha to fix", 254, (0, 255, 1)),
        (PF_BOOL, "make_opaque", "Make the fixed parts opaque.", True),
        (PF_DRAWABLE, "drawable", "Input layer", None),
    ],
    [],
    remove_layer_halo
)