summaryrefslogtreecommitdiff
path: root/src/winwidget.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2012-01-27 20:23:03 +0100
committerDaniel Friesel <derf@finalrewind.org>2012-01-27 20:23:03 +0100
commit4252f6eb96ef00d5907dceda3af8c581917d7aa1 (patch)
tree7850c29f32d7bbb2be61d865b2900f24c7d54eb7 /src/winwidget.c
parentf32e4f8b3876b5cf063b92fa8988a7bda3672795 (diff)
optional exif support (build with exif=1), initial patch import
Diffstat (limited to 'src/winwidget.c')
-rw-r--r--src/winwidget.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/winwidget.c b/src/winwidget.c
index ed7002a..e263702 100644
--- a/src/winwidget.c
+++ b/src/winwidget.c
@@ -574,6 +574,10 @@ void winwidget_render_image(winwidget winwid, int resize, int force_alias)
winwidget_update_caption(winwid);
if (opt.draw_filename)
feh_draw_filename(winwid);
+#ifdef HAVE_LIBEXIF
+ if (opt.draw_exif)
+ feh_draw_exif(winwid);
+#endif
if (opt.draw_actions)
feh_draw_actions(winwid);
if (opt.draw_info && opt.info_cmd)