1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 06:42:12 +03:00
and rustfmt on my little tweak
This commit is contained in:
Wez Furlong 2024-01-25 08:23:17 -07:00
parent 27259cb857
commit 1f9f3f2a5d
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 3 additions and 1 deletions

View File

@ -173,6 +173,8 @@ As features stabilize some brief notes about them will accumulate here.
UTF-8 string data. #4402
* [use_resize_increments](config/lua/config/use_resize_increments.md) now
accounts for window padding. Thanks to @jknockel! #4824
* Bar shaped text cursors are now rendered above text. Thanks to
@ErrorNoInternet! #4850
#### Updated
* Bundled harfbuzz to 8.3.0

View File

@ -357,7 +357,7 @@ impl crate::TermWindow {
};
let mut quad = layers
.allocate(cursor_layer)
.with_context(||format!("layers.allocate({cursor_layer})"))?;
.with_context(|| format!("layers.allocate({cursor_layer})"))?;
quad.set_hsv(hsv);
quad.set_has_color(false);