Commit 3aacde47 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Remove --menu-border option

parent 477d49d4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
git HEAD

    * Add --fullscreen option, --full-screen is now deprecated
    * Removed --menu-border option, it is largely useless

Fri, 25 Jun 2010 16:07:20 +0200  Daniel Friesel <derf@chaosdorf.de>

+0 −1
Original line number Diff line number Diff line
@@ -34,5 +34,4 @@ Configurable key bindings
Maybe remove some unneccessary stuff?
 * Builtin HTTP client
 * Support for custom menu backgrounds/themes
 * Menu border
 * output-dir (cd $dir; feh is good enough)
+0 −3
Original line number Diff line number Diff line
@@ -237,9 +237,6 @@ load them.
Use
.Ar file
as background image in menus.
.It Cm --menu-border Ar int
Specify number of pixels that define the menu background's border.  Borders
are not stretched when images are scaled.
.It Cm -M , --menu-font Ar font
Use
.Ar font
+0 −1
Original line number Diff line number Diff line
@@ -77,7 +77,6 @@ OPTIONS
 -M, --menu-font FONT      Use FONT for the font in menus.
     --menu-style FILE     Use FILE as the style descriptor for menu text.
 -), --menu-bg BG          Use BG for the background image in menus.
     --menu-border INT     Set border of menu images
 -B, --image-bg STYLE      Set background for transparent images and the like.
                           Accepted values: white, black, default
 -N, --no-menus            Don't load or show any menus.
+2 −4
Original line number Diff line number Diff line
@@ -111,10 +111,8 @@ feh_menu *feh_menu_new(void)
	if (!bg) {
		feh_load_image_char(&bg, opt.menu_bg);
		if (bg) {
			border.left = opt.menu_border;
			border.right = opt.menu_border;
			border.top = opt.menu_border;
			border.bottom = opt.menu_border;
			border.left = border.right = border.top = border.bottom
				= 4;
			imlib_context_set_image(bg);
			imlib_image_set_border(&border);
		}
Loading