diff options
author | nicm <nicm> | 2021-03-11 06:41:04 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-03-11 06:41:04 +0000 |
commit | 3eb91efba160eff0b077a5fee902edb632f7fdca (patch) | |
tree | 790d6916f3b921043d6b9e5408e3b9a2b3f377c2 /options-table.c | |
parent | d98f9f7fe56beefeb294184ffaed24b7ea510a97 (diff) | |
download | rtmux-3eb91efba160eff0b077a5fee902edb632f7fdca.tar.gz rtmux-3eb91efba160eff0b077a5fee902edb632f7fdca.tar.bz2 rtmux-3eb91efba160eff0b077a5fee902edb632f7fdca.zip |
Add an "absolute-centre" alignment to use the centre of the total space
instead of only the available space. From Magnus Gross in GitHub issue 2578.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 9fc69db5..8ea56918 100644 --- a/options-table.c +++ b/options-table.c @@ -46,7 +46,7 @@ static const char *options_table_status_keys_list[] = { "emacs", "vi", NULL }; static const char *options_table_status_justify_list[] = { - "left", "centre", "right", NULL + "left", "centre", "right", "absolute-centre", NULL }; static const char *options_table_status_position_list[] = { "top", "bottom", NULL |