opt: layer animation default to disable

This commit is contained in:
DreamMaoMao 2025-06-30 11:45:54 +08:00
parent 860a2ecdf6
commit b3e8f6e39f
2 changed files with 2 additions and 1 deletions

View file

@ -26,6 +26,7 @@ unfocused_opacity=1.0
# Animation Configuration(support type:zoom,slide)
# tag_animation_direction: 0-horizontal,1-vertical
animations=1
layer_animations=0
animation_type_open=slide
animation_type_close=slide
animation_fade_in=1

View file

@ -11,7 +11,7 @@
char *animation_type_open = "slide"; // 是否启用动画 //slide,zoom
char *animation_type_close = "slide"; // 是否启用动画 //slide,zoom
int animations = 1; // 是否启用动画
int layer_animations = 1; // 是否启用layer动画
int layer_animations = 0; // 是否启用layer动画
int tag_animation_direction = HORIZONTAL; // 标签动画方向
int animation_fade_in = 1; // Enable animation fade in
int animation_fade_out = 1; // Enable animation fade out