summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-08-23 20:36:38 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-08-23 20:36:38 +0200
commiteb1a687c6179ad456abc0dce9dbbe833c2c826a6 (patch)
treeb9ee6b3c8cc3016c16dea7bb0b0afe333249c8d9
parent8e0aba68c505a43561ca9b63a18ebcc0591ec22e (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.
-rw-r--r--src/feh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feh.h b/src/feh.h
index b25b3cc..6604f66 100644
--- a/src/feh.h
+++ b/src/feh.h
@@ -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 };