summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-06-14 23:16:16 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-06-14 23:16:16 +0200
commit00df19256d8b73c0c7492eb16327cd3a55b09004 (patch)
tree7a62e86287c99126278129c1332ffae4dfffd0f0
parent928ccd645e465766252ead319259bfd610e6f3bb (diff)
Do not make the thumbnail window fullscreen
-rw-r--r--ChangeLog3
-rw-r--r--man/feh.14
-rw-r--r--src/winwidget.c2
3 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 16487f9..cde26aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/man/feh.1 b/man/feh.1
index fadb68f..ad1eed7 100644
--- a/man/feh.1
+++ b/man/feh.1
@@ -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);