From fa1a1c872750dc80784477aee4a65f7e3d8ede3e Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 22 Aug 2021 23:24:30 +0200 Subject: [PATCH] fix tag commit msg in taglist (closes #871) --- CHANGELOG.md | 3 +++ src/components/taglist.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e02a874..3491631d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## Fixed +- fix commit msg being broken inside tag list ([#871](https://github.com/extrawurst/gitui/issues/871)) + ## [0.17.0] - 2021-08-21 **compare commits** diff --git a/src/components/taglist.rs b/src/components/taglist.rs index 67818b18..7512a9fb 100644 --- a/src/components/taglist.rs +++ b/src/components/taglist.rs @@ -86,7 +86,7 @@ impl DrawableComponent for TagListComponent { // author width Constraint::Length(19), // commit id - Constraint::Min(0), + Constraint::Percentage(100), ]; let rows = self.get_rows();