diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-04 21:55:46 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-04 21:55:46 +0100 |
commit | bc8f6d804edb3f84bdcfbf30b7141ba462695876 (patch) | |
tree | 44992c08fbd627bc25a473a949221bc5167c1000 /src/options.c | |
parent | 8a83c119e7d0c75f09159df79848efa49efc2dc7 (diff) | |
parent | 55cb64b21cc5d7c20f032683bd2b6d0d453ac9dc (diff) |
Merge branch 'Ferada-remove-collage-mode'
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/options.c b/src/options.c index 383e663..102c186 100644 --- a/src/options.c +++ b/src/options.c @@ -354,7 +354,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) {"title" , 1, 0, '^'}, {"alpha" , 1, 0, 'a'}, {"bg" , 1, 0, 'b'}, - {"collage" , 0, 0, 'c'}, {"draw-filename" , 0, 0, 'd'}, {"font" , 1, 0, 'e'}, {"filelist" , 1, 0, 'f'}, @@ -578,9 +577,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) opt.bg = 1; opt.bg_file = estrdup(optarg); break; - case 'c': - opt.collage = 1; - break; case 'd': opt.draw_filename = 1; break; @@ -853,17 +849,11 @@ static void check_options(void) } } - if ((opt.index + opt.collage) > 1) { - weprintf("you can't use collage mode and index mode together.\n" - " I'm going with index"); - opt.collage = 0; - } - if (opt.full_screen && opt.multiwindow) { eprintf("You cannot combine --fullscreen with --multiwindow"); } - if (opt.list && (opt.multiwindow || opt.index || opt.collage)) { + if (opt.list && (opt.multiwindow || opt.index)) { eprintf("You cannot combine --list with other modes"); } |