left-vertical -> main-vertical.

Also update CHANGES/TODO.
This commit is contained in:
Nicholas Marriott
2009-05-18 21:58:40 +00:00
parent 6e4b947d71
commit c21ffbc772
3 changed files with 13 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $Id: layout.c,v 1.12 2009-05-18 21:55:53 nicm Exp $ */
/* $Id: layout.c,v 1.13 2009-05-18 21:58:40 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -34,7 +34,7 @@
void layout_active_only_refresh(struct window *, int);
void layout_even_h_refresh(struct window *, int);
void layout_even_v_refresh(struct window *, int);
void layout_left_v_refresh(struct window *, int);
void layout_main_v_refresh(struct window *, int);
const struct {
const char *name;
@ -45,7 +45,7 @@ const struct {
{ "active-only", layout_active_only_refresh, NULL },
{ "even-horizontal", layout_even_h_refresh, NULL },
{ "even-vertical", layout_even_v_refresh, NULL },
{ "left-vertical", layout_left_v_refresh, NULL },
{ "main-vertical", layout_main_v_refresh, NULL },
};
const char *
@ -231,7 +231,7 @@ layout_even_v_refresh(struct window *w, int active_only)
}
void
layout_left_v_refresh(struct window *w, int active_only)
layout_main_v_refresh(struct window *w, int active_only)
{
struct window_pane *wp;
u_int i, n, mainwidth, height, yoff;