Skip to content

Commit

Permalink
Put scrollbar right at edge
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbroman committed Apr 5, 2023
1 parent ea3af31 commit 3e175b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/renderer/apps/Courier/views/ChatLogList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ export const ChatLogList = ({
innerRef={listRef}
data={messages}
followOutput="auto"
width={width + scrollbarWidth / 2}
width={width + scrollbarWidth}
height={height}
style={{ marginRight: -(scrollbarWidth / 2) }}
style={{ marginRight: -scrollbarWidth }}
initialTopMostItemIndex={messages.length - 1}
itemContent={renderChatRow}
/>
Expand Down

0 comments on commit 3e175b8

Please sign in to comment.