git_ui: horizontal is not vertical (#25961)
Fixes an issue where I was missing some brain cells and changed the git panel's `render_entries` to a `v_flex` instead of an `h_flex`. But actually, fixes the git panel entries from disappearing when a scrollbar is rendered. **Before**  **After**  Closes #25955 Release Notes: - Git Beta: Fixed an issue where when the git panel would need to scroll all the items are pushed off the screen.
This commit is contained in:
parent
0bd40da546
commit
ac3cb3df05
1 changed files with 1 additions and 1 deletions
|
@ -2274,7 +2274,7 @@ impl GitPanel {
|
|||
) -> impl IntoElement {
|
||||
let entry_count = self.entries.len();
|
||||
|
||||
v_flex()
|
||||
h_flex()
|
||||
.size_full()
|
||||
.flex_grow()
|
||||
.overflow_hidden()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue