diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | man/feh.1 | 4 | ||||
-rw-r--r-- | src/winwidget.c | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,9 @@ git HEAD * support LDLIBS in Makefile/config.mk + * Don't make the --thumbnails window fullscreen. The images launched from + thumbnail mode may be fullscreen, though. You can still use 'v' to + toggle fullscreen, should you really need it. Thu Jun 10 12:12:04 CEST 2010 @@ -335,6 +335,10 @@ for more info. Note that options from the theme file always override commandline options. .It Cm -t , --thumbnails Same as Index mode, but the thumbnails are clickable image launchers. +Note that +.Cm --full-screen +does not affect the thumbnail window. It does, however, work for the image +windows launched from thumbnail mode. .It Cm -~ , --thumb-title Ar string Set .Ar title diff --git a/src/winwidget.c b/src/winwidget.c index 27af21b..e57be89 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -95,7 +95,7 @@ winwidget winwidget_create_from_image(Imlib_Image im, char *name, char type) else ret->name = estrdup(PACKAGE); - if (opt.full_screen) + if (opt.full_screen && (type != WIN_TYPE_THUMBNAIL)) ret->full_screen = True; winwidget_create_window(ret, ret->w, ret->h); winwidget_render_image(ret, 1, 1); |