Skip to content

Commit

Permalink
update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Aug 27, 2024
1 parent 3430b52 commit 86c69e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ language: 'en'

## Unreleased

- Refactor close logic on close tabs.
- Fix: NativeTab margin top when `hide-if-single` is true.
- Fix: Search bar width on 1.0 dpi screens.
- Fix: Windows - The behavior of using a complete shell command and a shell command with parameters is inconsistent [#533](https://github.com/raphamorim/rio/issues/533).
- X11: Replace libxcursor with custom cursor code.
- Fix: MacOS Delete key doesn't work in kitty mode [#513](https://github.com/raphamorim/rio/issues/513).
Expand Down
2 changes: 1 addition & 1 deletion frontends/rioterm/src/renderer/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub fn draw_search_bar(
position: [0.0, position_y],
color: colors.bar,
size: [
(width + PADDING_Y_BOTTOM_TABS) * scale,
(width * 2.) * scale,
PADDING_Y_BOTTOM_TABS,
],
}));
Expand Down

0 comments on commit 86c69e5

Please sign in to comment.