Skip to content

Commit

Permalink
Merge branch 'master' into bump-winit-02914
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisduerr authored Mar 7, 2024
2 parents 4f07a73 + 6dbb3ff commit 728047b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Performance of scrolling regions with offset from the bottom
- Extra mouse buttons are no longer ignored on Wayland
- Numpad arrow keys are now properly recognized on Wayland
- Compilation when targetting aarch64-apple-darwin
- Compilation when targeting aarch64-apple-darwin
- Window not being completely opaque on Windows
- Window being always on top during alt-tab on Windows
- Cursor position not reported to apps when mouse is moved with button held outside of window
Expand Down
2 changes: 1 addition & 1 deletion alacritty_terminal/src/term/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ impl<T: EventListener> Handler for Term<T> {
return;
}

trace!("Attemting to pop {to_pop} keyboard modes from the stack");
trace!("Attempting to pop {to_pop} keyboard modes from the stack");
let new_len = self.keyboard_mode_stack.len().saturating_sub(to_pop as usize);
self.keyboard_mode_stack.truncate(new_len);

Expand Down

0 comments on commit 728047b

Please sign in to comment.