Skip to content

Commit

Permalink
io-order: forbid moving crop below flip module.
Browse files Browse the repository at this point in the history
Fixes #11614.
  • Loading branch information
TurboGit committed Apr 26, 2022
1 parent a5fa576 commit d60f6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/iop_order.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,7 @@ GList *dt_ioppr_get_iop_order_rules()
{ .op_prev = "demosaic", .op_next = "colorin" },
{ .op_prev = "colorin", .op_next = "colorout" },
{ .op_prev = "colorout", .op_next = "gamma" },
{ .op_prev = "flip", .op_next = "crop" }, // crop GUI broken if flip is done on top
{ .op_prev = "flip", .op_next = "clipping" }, // clipping GUI broken if flip is done on top
{ .op_prev = "ashift", .op_next = "clipping" }, // clipping GUI broken if ashift is done on top
{ .op_prev = "colorin", .op_next = "channelmixerrgb"},
Expand Down Expand Up @@ -2207,4 +2208,3 @@ GList *dt_ioppr_deserialize_iop_order_list(const char *buf, size_t size)
// vim: shiftwidth=2 expandtab tabstop=2 cindent
// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-spaces modified;
// clang-format on

0 comments on commit d60f6b9

Please sign in to comment.