aboutsummaryrefslogtreecommitdiffstats
path: root/src/yawa.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-11-11 02:58:28 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-11-11 03:41:05 +0100
commit441ca1cebe7ce5c45304108533a1db2b988c1f1e (patch)
tree9b6e72b99e5e11687e7dbda22efc94be28b0decb /src/yawa.h
parent07f3985059df48a0d664f294aae3fc64e6e1a6de (diff)
downloadyawa-441ca1cebe7ce5c45304108533a1db2b988c1f1e.tar.xz
Drop short opts for flips
Diffstat (limited to 'src/yawa.h')
-rw-r--r--src/yawa.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yawa.h b/src/yawa.h
index 9fe8cb2..f7bde5f 100644
--- a/src/yawa.h
+++ b/src/yawa.h
@@ -76,7 +76,7 @@ struct arguments {
static struct argp_option options[] = {
{0, 0, 0, 0, "Gradients:", 1},
{"add", 'a', "COLOR", 0, "Add color to range", 1},
- {"distance", 'D', "DISTANCE", 0, "Distance to use for adding color to range. "
+ {"distance", 'd', "DISTANCE", 0, "Distance to use for adding color to range. "
"Defaults to 1 for each color", 1},
{"gradient", 'g', "ANGLE", 0, "Render gradient using specified angle", 1},
{"clear", 'c', 0, 0, "Clear the color range", 1},
@@ -97,9 +97,9 @@ static struct argp_option options[] = {
{"contrast", 'o', "AMOUNT", 0, "Adjust the contrast of the current image", 4},
{"brightness", 'B', "AMOUNT", 0, "Adjust the bightness of the current image", 4},
{"gamma", 'G', "AMOUNT", 0, "Adjust the gamma level of the current image", 4},
- {"flipv", 'v', 0, 0, "Flip the current image vertically", 4},
- {"fliph", 'h', 0, 0, "Flip the current image horizontally", 4},
- {"flipd", 'd', 0, 0, "Flip the current image diagonally", 4},
+ {"flipv", 1, 0, 0, "Flip the current image vertically", 4},
+ {"fliph", 2, 0, 0, "Flip the current image horizontally", 4},
+ {"flipd", 3, 0, 0, "Flip the current image diagonally", 4},
{0, 0, 0, 0, "Misc:", -1},
{"alpha", 'A', "AMOUNT", 0, "Adjust alpha level for colors and images", -1},