From 6185b24b379ef8cf1eda2d47552bf0eb684a19e0 Mon Sep 17 00:00:00 2001 From: Gabor Apati-Nagy Date: Thu, 8 Jun 2017 17:31:57 +0100 Subject: [PATCH] CA-147943: Scrollbar for list of hotfixes installed in a pool doesn't have scrollbar the first time it is expanded General tab (Pool): In the list of updates, added a space after each comma to let the control wrap the text into multiple lines. This way the text is no longer cut, therefore no additional scrollbar is needed. Signed-off-by: Gabor Apati-Nagy --- XenAdmin/TabPages/GeneralTabPage.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XenAdmin/TabPages/GeneralTabPage.cs b/XenAdmin/TabPages/GeneralTabPage.cs index ff48bc28c..76026ec5a 100644 --- a/XenAdmin/TabPages/GeneralTabPage.cs +++ b/XenAdmin/TabPages/GeneralTabPage.cs @@ -1733,7 +1733,7 @@ namespace XenAdmin.TabPages output.Sort(StringUtility.NaturalCompare); - return String.Join(",", output.ToArray()); + return String.Join(", ", output.ToArray()); } private string poolUpdateString(Predicate predicate) @@ -1748,7 +1748,7 @@ namespace XenAdmin.TabPages output.Sort(StringUtility.NaturalCompare); - return String.Join(",", output.ToArray()); + return String.Join(", ", output.ToArray()); } #endregion