mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-06-24 13:36:42 -04:00
opt: allow tab height to 0
This commit is contained in:
parent
0cc6badc6d
commit
23a67ba4e6
4 changed files with 29 additions and 15 deletions
|
|
@ -105,6 +105,11 @@ void client_add_jump_label_node(Client *c) {
|
|||
}
|
||||
|
||||
void client_add_tab_bar_node(Client *c) {
|
||||
|
||||
if (config.tab_bar_height <= 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
MangoNodeData *mangonodedata = ecalloc(1, sizeof(MangoNodeData));
|
||||
mangonodedata->node_data = c;
|
||||
mangonodedata->type = MANGO_TITLE_NODE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue