From 30b0f6ae5a03d46052320612b24086ff94a75d76 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 9 May 2011 20:17:09 +0200 Subject: Fix --zoom max/fill documentation plus bug in menu code (thx nepraith) --- ChangeLog | 2 ++ man/feh.pre | 2 +- src/menu.c | 5 +++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index eccf300..d46bcf4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,8 @@ git HEAD * Minor manpage fixes. + * Fix --auto-zoom / --zoom max/fill documentation, the "Auto-Zoom" menu + option is now always checked when these options are used Sat, 23 Apr 2011 22:00:27 +0200 Daniel Friesel diff --git a/man/feh.pre b/man/feh.pre index 2d94416..af938b7 100644 --- a/man/feh.pre +++ b/man/feh.pre @@ -483,7 +483,7 @@ when in full screen mode or when window geometry is fixed. When combined with zooming will be limited to the specified .Ar percent . Specifying -.Cm fill +.Cm max is like setting .Cm --auto-zoom , using diff --git a/src/menu.c b/src/menu.c index 795a59e..fe58760 100644 --- a/src/menu.c +++ b/src/menu.c @@ -1398,7 +1398,7 @@ void feh_menu_cb(feh_menu * m, feh_menu_item * i, int action, void *data) case CB_OPT_AUTO_ZOOM: MENU_ITEM_TOGGLE(i); if (MENU_ITEM_IS_ON(i)) - opt.zoom_mode = ZOOM_MODE_FILL; + opt.zoom_mode = ZOOM_MODE_MAX; else opt.zoom_mode = 0; winwidget_rerender_all(1); @@ -1452,7 +1452,8 @@ static feh_menu *feh_menu_func_gen_options(feh_menu * m) mm = feh_menu_new(); mm->name = estrdup("OPTIONS"); mm->fehwin = m->fehwin; - feh_menu_add_toggle_entry(mm, "Auto-Zoom", NULL, NULL, CB_OPT_AUTO_ZOOM, NULL, NULL, (opt.zoom_mode == ZOOM_MODE_FILL)); + feh_menu_add_toggle_entry(mm, "Auto-Zoom", NULL, NULL, CB_OPT_AUTO_ZOOM, + NULL, NULL, opt.zoom_mode); feh_menu_add_toggle_entry(mm, "Freeze Window Size", NULL, NULL, CB_OPT_FREEZE_WINDOW, NULL, NULL, opt.geom_flags); feh_menu_add_toggle_entry(mm, "Fullscreen", NULL, NULL, -- cgit v1.2.3