diff options
author | Dennis Real <github@tildepipe.org> | 2012-08-13 21:40:56 +0200 |
---|---|---|
committer | Dennis Real <github@tildepipe.org> | 2012-08-13 21:40:56 +0200 |
commit | 840474a293c3230383afc9e7822ae94a93379f1c (patch) | |
tree | 6d90397fe5057d3d922a214ed6d13d3b7bf151d1 /src/thumbnail.c | |
parent | 676ff730e7db5cbeba778d1bca4aa26b15a93f07 (diff) | |
parent | 503048c639e1017324e64313c7eb197b20201b40 (diff) |
Merge branch 'master' of git://github.com/derf/feh
Diffstat (limited to 'src/thumbnail.c')
-rw-r--r-- | src/thumbnail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thumbnail.c b/src/thumbnail.c index f276592..b26dc7f 100644 --- a/src/thumbnail.c +++ b/src/thumbnail.c @@ -169,7 +169,7 @@ void init_thumbnail_mode(void) if (!opt.title) s = estrdup(PACKAGE " [thumbnail mode]"); else - s = estrdup(feh_printf(opt.title, NULL)); + s = estrdup(feh_printf(opt.title, NULL, NULL)); if (opt.display) { winwid = winwidget_create_from_image(td.im_main, s, WIN_TYPE_THUMBNAIL); @@ -717,7 +717,7 @@ void feh_thumbnail_show_fullsize(feh_file *thumbfile) if (!opt.thumb_title) s = thumbfile->name; else - s = feh_printf(opt.thumb_title, thumbfile); + s = feh_printf(opt.thumb_title, thumbfile, NULL); thumbwin = winwidget_get_first_window_of_type(WIN_TYPE_THUMBNAIL_VIEWER); if (!thumbwin) { |