summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-04-14 20:10:54 +0200
committerDaniel Friesel <derf@finalrewind.org>2014-04-14 20:10:54 +0200
commitbbdb885d9cc40077bf50a6d13be74b9d07a50e59 (patch)
treeff764b9b3ecccc1eab62a9d0ebd3fc5434c5e770 /src/options.c
parent60f6a93e10612ab9edf8e10ccaabbca756142f0c (diff)
add --scroll-step option
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c
index c6166d9..7542cd5 100644
--- a/src/options.c
+++ b/src/options.c
@@ -57,6 +57,7 @@ void init_parse_options(int argc, char **argv)
opt.thumb_w = 60;
opt.thumb_h = 60;
opt.thumb_redraw = 10;
+ opt.scroll_step = 20;
opt.menu_font = estrdup(DEFAULT_MENU_FONT);
opt.font = NULL;
opt.menu_bg = estrdup(PREFIX "/share/feh/images/menubg_default.png");
@@ -398,6 +399,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
{"force-aliasing", 0, 0, 235},
{"no-fehbg" , 0, 0, 236},
{"keep-zoom-vp" , 0, 0, 237},
+ {"scroll-step" , 1, 0, 238},
{0, 0, 0, 0}
};
@@ -731,6 +733,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
case 237:
opt.keep_zoom_vp = 1;
break;
+ case 238:
+ opt.scroll_step = atoi(optarg);
+ break;
default:
break;
}