Commit 00df1925 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Do not make the thumbnail window fullscreen

parent 928ccd64
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
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

+4 −0
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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);