Skip to content

Commit 86c69e5

Browse files
committed
update CHANGELOG.md
1 parent 3430b52 commit 86c69e5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/docs/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ language: 'en'
77

88
## Unreleased
99

10+
- Refactor close logic on close tabs.
11+
- Fix: NativeTab margin top when `hide-if-single` is true.
12+
- Fix: Search bar width on 1.0 dpi screens.
1013
- 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).
1114
- X11: Replace libxcursor with custom cursor code.
1215
- Fix: MacOS Delete key doesn't work in kitty mode [#513](https://github.com/raphamorim/rio/issues/513).

frontends/rioterm/src/renderer/search.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn draw_search_bar(
1616
position: [0.0, position_y],
1717
color: colors.bar,
1818
size: [
19-
(width + PADDING_Y_BOTTOM_TABS) * scale,
19+
(width * 2.) * scale,
2020
PADDING_Y_BOTTOM_TABS,
2121
],
2222
}));

0 commit comments

Comments
 (0)