Skip to content

Commit

Permalink
Fix input visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tarkah committed Feb 11, 2024
1 parent ace5bc2 commit 96ef3d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

Fixed:

- Input not visible on Server and Query (DM) buffers

# 2024.1 (2024-02-07)

Added:
Expand Down
1 change: 1 addition & 0 deletions src/buffer/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ pub fn view<'a>(
)
.map(Message::InputView)
]
.width(Length::Fill)
});

let scrollable = column![messages]
Expand Down
1 change: 1 addition & 0 deletions src/buffer/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pub fn view<'a>(
)
.map(Message::InputView)
]
.width(Length::Fill)
});

let scrollable = column![messages]
Expand Down

0 comments on commit 96ef3d8

Please sign in to comment.