summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2021-09-09 15:36:08 +0200
committerTomas Farago <sensej007@email.cz>2021-09-09 15:36:08 +0200
commite71db172c8a91a070f5def73168d45786c6ad139 (patch)
tree73198204767527f56100a68383615d95e32b6da8
parent84c5572c5f81bba8cfd73e8b64cadbd401d489c8 (diff)
downloadufo-filters-e71db172c8a91a070f5def73168d45786c6ad139.tar.gz
ufo-filters-e71db172c8a91a070f5def73168d45786c6ad139.tar.bz2
ufo-filters-e71db172c8a91a070f5def73168d45786c6ad139.tar.xz
ufo-filters-e71db172c8a91a070f5def73168d45786c6ad139.zip
pad: Add mirrored_repeat to the list
-rw-r--r--src/ufo-pad-task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ufo-pad-task.c b/src/ufo-pad-task.c
index f2b219f..15aa764 100644
--- a/src/ufo-pad-task.c
+++ b/src/ufo-pad-task.c
@@ -342,8 +342,8 @@ ufo_pad_task_class_init (UfoPadTaskClass *klass)
properties[PROP_ADDRESSING_MODE] =
g_param_spec_enum ("addressing-mode",
- "Outlier treatment (\"none\", \"clamp\", \"clamp_to_edge\", \"repeat\")",
- "Outlier treatment (\"none\", \"clamp\", \"clamp_to_edge\", \"repeat\")",
+ "Outlier treatment (\"none\", \"clamp\", \"clamp_to_edge\", \"repeat\", \"mirrored_repeat\")",
+ "Outlier treatment (\"none\", \"clamp\", \"clamp_to_edge\", \"repeat\", \"mirrored_repeat\")",
g_enum_register_static ("ufo_pad_addressing_mode", addressing_values),
CL_ADDRESS_CLAMP,
G_PARAM_READWRITE);