summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-30 03:10:07 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-30 03:10:07 +0200
commitf933dd396cf0f5cbb5b053d5a8f85fbcfc9761fd (patch)
tree2cbe398e30ad15ae94f1cdf911485b4f7a4dd4ec /src/options.c
parent555f7bccebc92d28a14eb0fd6d29a2a39b8f83e1 (diff)
Apply changes to thumbnail mode
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/options.c b/src/options.c
index 4b29d35..1583eb8 100644
--- a/src/options.c
+++ b/src/options.c
@@ -409,9 +409,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
break;
case 'm':
opt.index = 1;
- opt.index_show_name = 0;
- opt.index_show_size = 0;
- opt.index_show_dim = 0;
break;
case 'c':
opt.collage = 1;
@@ -419,9 +416,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
case 'i':
opt.index = 1;
opt.index_info = estrdup("%n");
- opt.index_show_name = 1;
- opt.index_show_size = 0;
- opt.index_show_dim = 0;
break;
case '.':
opt.scale_down = 1;
@@ -429,9 +423,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
case 'I':
opt.index = 1;
opt.index_info = estrdup("%n\n%S\n%wx%h");
- opt.index_show_name = 1;
- opt.index_show_size = 1;
- opt.index_show_dim = 1;
break;
case 'l':
opt.list = 1;
@@ -612,10 +603,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
break;
case 't':
opt.thumbs = 1;
- opt.index_info = ("%n");
- opt.index_show_name = 1;
- opt.index_show_size = 0;
- opt.index_show_dim = 0;
+ opt.index_info = estrdup("%n");
break;
case 'j':
opt.output_dir = estrdup(optarg);