diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-07-08 13:14:16 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-07-08 13:14:16 +0200 |
commit | 130f5dae73982c0e672a6262c8dc3baeb43cd4e2 (patch) | |
tree | fd9f15a61e7d46e990d8e83361cd67e530f2a410 /src/options.c | |
parent | 3aacde475ce9e5654fd16e25c3d31d52c06de5cb (diff) |
opt.no_jump_on_resort -> opt.jump_on_resort
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c index d9ee51f..0c14a36 100644 --- a/src/options.c +++ b/src/options.c @@ -74,7 +74,7 @@ void init_parse_options(int argc, char **argv) opt.no_blur_ctrl_mask = 0; opt.start_list_at = NULL; - opt.no_jump_on_resort = 0; + opt.jump_on_resort = 1; opt.builtin_http = 0; @@ -722,7 +722,7 @@ static void feh_parse_option_array(int argc, char **argv) opt.actions[9] = estrdup(optarg); break; case 220: - opt.no_jump_on_resort = 1; + opt.jump_on_resort = 0; break; case 221: opt.hide_pointer = 1; |