Skip to content

Commit 671205e

Browse files
committed
fix height of branch sort popup
1 parent 7c6f86b commit 671205e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/popups/branch_sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl BranchSortPopup {
8585
impl DrawableComponent for BranchSortPopup {
8686
fn draw(&self, f: &mut Frame, area: Rect) -> Result<()> {
8787
if self.is_visible() {
88-
const MAX_SIZE: (u16, u16) = (50, 20);
88+
const MAX_SIZE: (u16, u16) = (50, 8);
8989

9090
let mut area = ui::centered_rect_absolute(
9191
MAX_SIZE.0, MAX_SIZE.1, area,

0 commit comments

Comments
 (0)