mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Change default bell.animation
to Linear
The default animation feels really choppy, but it's just how its function looks.
This commit is contained in:
parent
2f097dac5c
commit
dc46d41ff9
3 changed files with 3 additions and 2 deletions
|
@ -47,6 +47,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
- In mouse mode with `Shift` pressed, mouse bindings without `Shift` are only triggered
|
||||
if no exact binding (i.e. one with `Shift`) is found.
|
||||
- Use built-in font for powerline symbols from `U+E0B0` to `U+E0B3`
|
||||
- Default `bell.animation` is now `Linear`
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -56,10 +56,10 @@ pub enum BellAnimation {
|
|||
// Penner animation.
|
||||
EaseOutQuint,
|
||||
// Penner animation.
|
||||
#[default]
|
||||
EaseOutExpo,
|
||||
// Penner animation.
|
||||
EaseOutCirc,
|
||||
// Penner animation.
|
||||
#[default]
|
||||
Linear,
|
||||
}
|
||||
|
|
|
@ -461,7 +461,7 @@ This section documents the *[bell]* table of the configuration file.
|
|||
|
||||
Visual bell animation effect for flashing the screen when the visual bell is rung.
|
||||
|
||||
Default: _"EaseOutExpo"_
|
||||
Default: _"Linear"_
|
||||
|
||||
*duration* <integer>
|
||||
|
||||
|
|
Loading…
Reference in a new issue