From 56dec873222e8881847ebcb246eaf67d69e4e86a Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 21 Mar 2011 20:23:33 +0100 Subject: Add method to forcefully disable antialiasing (closes GH-17) --- src/options.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/options.c') diff --git a/src/options.c b/src/options.c index 9afbeb0..5a45362 100644 --- a/src/options.c +++ b/src/options.c @@ -423,6 +423,7 @@ static void feh_parse_option_array(int argc, char **argv) {"index-dim" , 1, 0, 232}, {"thumb-redraw" , 1, 0, 'J'}, {"info" , 1, 0, 234}, + {"force-aliasing", 0, 0, 235}, {0, 0, 0, 0} }; @@ -772,6 +773,9 @@ static void feh_parse_option_array(int argc, char **argv) case 234: opt.info_cmd = estrdup(optarg); break; + case 235: + opt.force_aliasing = 1; + break; default: break; } -- cgit v1.2.3