From 1c9ea0a7109c059bcc55678105678c02ab8f202a Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Mon, 9 May 2022 15:44:37 -0600 Subject: [PATCH] No text trimming since columns are enlargeable --- Source/LibationWinForms/grid/GridEntry.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/LibationWinForms/grid/GridEntry.cs b/Source/LibationWinForms/grid/GridEntry.cs index 04283952..b1c7f088 100644 --- a/Source/LibationWinForms/grid/GridEntry.cs +++ b/Source/LibationWinForms/grid/GridEntry.cs @@ -263,11 +263,7 @@ namespace LibationWinForms { var doc = new HtmlAgilityPack.HtmlDocument(); doc.LoadHtml(book?.Description ?? ""); - var noHtml = doc.DocumentNode.InnerText; - return - noHtml.Length < 63 ? - noHtml : - noHtml.Substring(0, 60) + "..."; + return doc.DocumentNode.InnerText; } ///