diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-05-18 20:30:14 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-05-18 20:30:14 +0000 |
commit | 4efd45628d28e41a1d84091b4b6091484586ca28 (patch) | |
tree | 4b2bb97c5f9a940ac7bda656164163c559f7dc93 /options-table.c | |
parent | 4fcbf4b872bb2b30a34edaf7e0b95a01c17a8aa7 (diff) | |
download | rtmux-4efd45628d28e41a1d84091b4b6091484586ca28.tar.gz rtmux-4efd45628d28e41a1d84091b4b6091484586ca28.tar.bz2 rtmux-4efd45628d28e41a1d84091b4b6091484586ca28.zip |
Sync OpenBSD patchset 905:
Add a new option, mouse-resize-pane. When on, panes may be resized by
dragging their borders. From hsim at gmx.li.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 59f16d14..42d50335 100644 --- a/options-table.c +++ b/options-table.c @@ -1,4 +1,4 @@ -/* $Id: options-table.c,v 1.8 2011-05-18 20:28:40 tcunha Exp $ */ +/* $Id: options-table.c,v 1.9 2011-05-18 20:30:14 tcunha Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -192,6 +192,11 @@ const struct options_table_entry session_options_table[] = { .default_num = 20 }, + { .name = "mouse-resize-pane", + .type = OPTIONS_TABLE_FLAG, + .default_num = 0 + }, + { .name = "mouse-select-pane", .type = OPTIONS_TABLE_FLAG, .default_num = 0 |