diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 17:25:46 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 17:28:36 +0100 | 
| commit | b6a4485f5f9addc976e0253d9c953ec6fd6c9052 (patch) | |
| tree | 6a9d82378e1c02fd9382c8f0fce7f3b9ce1fd157 /src | |
| parent | 29c85fd4feb8a2d0b853bd130de936b24da0f8f1 (diff) | |
Switch --zoom max/fill to make them work like --bg-max/-fill (closes GH-8)
Diffstat (limited to 'src')
| -rw-r--r-- | src/options.c | 2 | ||||
| -rw-r--r-- | src/winwidget.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/src/options.c b/src/options.c index 578598a..8d54360 100644 --- a/src/options.c +++ b/src/options.c @@ -517,7 +517,7 @@ static void feh_parse_option_array(int argc, char **argv)  			opt.full_screen = 1;  			break;  		case 'Z': -			opt.zoom_mode = ZOOM_MODE_FILL; +			opt.zoom_mode = ZOOM_MODE_MAX;  			break;  		case 'U':  			opt.loadables = 1; diff --git a/src/winwidget.c b/src/winwidget.c index e918cd3..426fd74 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -580,7 +580,7 @@ double feh_calc_needed_zoom(double *zoom, int orig_w, int orig_h, int dest_w, in  	ratio = ((double) orig_w / orig_h) / ((double) dest_w / dest_h); -	if (opt.zoom_mode == ZOOM_MODE_MAX) +	if (opt.zoom_mode == ZOOM_MODE_FILL)  		ratio = 1.0 / ratio;  	if (ratio > 1.0) | 
