mirror of
https://github.com/tmux/tmux.git
synced 2025-09-16 00:08:21 +00:00
left-vertical -> main-vertical.
Also update CHANGES/TODO.
This commit is contained in:
8
layout.c
8
layout.c
@@ -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;
|
||||
|
Reference in New Issue
Block a user