mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-06-19 14:33:16 -04:00
opt: allow tab height to 0
This commit is contained in:
parent
727b9fe77e
commit
5583f8901a
4 changed files with 29 additions and 15 deletions
|
|
@ -3569,7 +3569,7 @@ void override_config(void) {
|
|||
config.scratchpad_height_ratio =
|
||||
CLAMP_FLOAT(config.scratchpad_height_ratio, 0.1f, 1.0f);
|
||||
config.borderpx = CLAMP_INT(config.borderpx, 0, 200);
|
||||
config.tab_bar_height = CLAMP_INT(config.tab_bar_height, 5, 500);
|
||||
config.tab_bar_height = CLAMP_INT(config.tab_bar_height, 0, 500);
|
||||
config.smartgaps = CLAMP_INT(config.smartgaps, 0, 1);
|
||||
config.blur = CLAMP_INT(config.blur, 0, 1);
|
||||
config.blur_layer = CLAMP_INT(config.blur_layer, 0, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue