~ubuntu-branches/debian/sid/feh/sid

« back to all changes in this revision

Viewing changes to src/options.c

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2014-05-04 12:00:39 UTC
  • mfrom: (1.4.3)
  • Revision ID: package-import@ubuntu.com-20140504120039-mxh5omqkx5mudan3
Tags: 2.11-1
New upstream release, fixes manual problem (closes: #745467).

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        opt.thumb_w = 60;
58
58
        opt.thumb_h = 60;
59
59
        opt.thumb_redraw = 10;
 
60
        opt.scroll_step = 20;
60
61
        opt.menu_font = estrdup(DEFAULT_MENU_FONT);
61
62
        opt.font = NULL;
62
63
        opt.menu_bg = estrdup(PREFIX "/share/feh/images/menubg_default.png");
398
399
                {"force-aliasing", 0, 0, 235},
399
400
                {"no-fehbg"      , 0, 0, 236},
400
401
                {"keep-zoom-vp"  , 0, 0, 237},
 
402
                {"scroll-step"   , 1, 0, 238},
401
403
 
402
404
                {0, 0, 0, 0}
403
405
        };
731
733
                case 237:
732
734
                        opt.keep_zoom_vp = 1;
733
735
                        break;
 
736
                case 238:
 
737
                        opt.scroll_step = atoi(optarg);
 
738
                        break;
734
739
                default:
735
740
                        break;
736
741
                }