diff options
author | nicm <nicm> | 2020-05-25 11:59:50 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-25 11:59:50 +0000 |
commit | 26e8e467e8e4d3e4f4596b9ce50832735cdc4d50 (patch) | |
tree | 18aad5040dd8ae0c3cb7f76a6f77d4affd83872c | |
parent | 3a5219c6d0c1a85ac3cf7a6b938f724650001a4d (diff) | |
download | rtmux-26e8e467e8e4d3e4f4596b9ce50832735cdc4d50.tar.gz rtmux-26e8e467e8e4d3e4f4596b9ce50832735cdc4d50.tar.bz2 rtmux-26e8e467e8e4d3e4f4596b9ce50832735cdc4d50.zip |
Include title for the width of the menu.
-rw-r--r-- | menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -111,6 +111,7 @@ menu_create(const char *title) menu = xcalloc(1, sizeof *menu); menu->title = xstrdup(title); + menu->width = format_width(title); return (menu); } |