diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-04 22:13:28 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-04 22:13:28 +0100 |
commit | 9d86d3cecc9046922b8a0c49acb60aa480f84a4e (patch) | |
tree | 129cc1c51c888968aab6752f4639ce4e57b5535c /src/options.c | |
parent | bc8f6d804edb3f84bdcfbf30b7141ba462695876 (diff) | |
parent | de185357e745f78e2133da826972502bd1980d1f (diff) |
Merge branch 'ulteq-no-inplace-edit'
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index 102c186..19e47f6 100644 --- a/src/options.c +++ b/src/options.c @@ -398,6 +398,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) {"bg-fill" , 0, 0, 218}, {"bg-max" , 0, 0, 219}, {"no-jump-on-resort", 0, 0, 220}, + {"edit" , 0, 0, 221}, #ifdef HAVE_LIBEXIF {"draw-exif" , 0, 0, 223}, {"auto-rotate" , 0, 0, 242}, @@ -730,6 +731,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) case 220: opt.jump_on_resort = 0; break; + case 221: + opt.edit = 1; + break; #ifdef HAVE_LIBEXIF case 223: opt.draw_exif = 1; |