plug-ins: Get Blue channel in Palette-Sort

Per Elad Shahar, this should be v.b instead of v.r.
This commit is contained in:
Alx Sa 2024-04-15 18:12:29 +00:00
parent 15ffc4a6c0
commit 167066a468
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ AVAILABLE_CHANNELS = (_("Red"), _("Green"), _("Blue"),
channel_getters = [
(lambda v, i: v.r),
(lambda v, i: v.g),
(lambda v, i: v.r),
(lambda v, i: v.b),
(lambda v, i: rgb_to_yiq(v.r, v.g, v.b)[0]),