diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-08-23 20:36:38 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-08-23 20:36:38 +0200 |
commit | eb1a687c6179ad456abc0dce9dbbe833c2c826a6 (patch) | |
tree | b9ee6b3c8cc3016c16dea7bb0b0afe333249c8d9 /src/feh.h | |
parent | 8e0aba68c505a43561ca9b63a18ebcc0591ec22e (diff) |
Fix default zoom behaviour
67e41d607413d8e95124b1d28b6ae74924e74ab9 moved the ZOOM_MODE from options.h
defines to a feh.h enum, but did not set the values correctly.
Diffstat (limited to 'src/feh.h')
-rw-r--r-- | src/feh.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ enum bgmode_type { BG_MODE_NONE = 0, BG_MODE_TILE, BG_MODE_CENTER, BG_MODE_SCALE, BG_MODE_FILL, BG_MODE_MAX }; -enum zoom_mode { ZOOM_MODE_FILL, ZOOM_MODE_MAX }; +enum zoom_mode { ZOOM_MODE_FILL = 1, ZOOM_MODE_MAX }; enum text_bg { TEXT_BG_CLEAR = 0, TEXT_BG_TINTED }; |