CA-140338: Truncation on New Search Page with long Custom Field Filters name

Accidentally left an extra piece of ellpising in the wrong place, now removed.

Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
This commit is contained in:
Callum McIntyre 2016-09-01 15:03:43 +01:00
parent 3295dc845d
commit c36f160327

View File

@ -282,7 +282,7 @@ namespace XenAdmin.Controls.XenSearch
if (CurrentQueryType != null)
{
queryTypeComboButton.Text = CurrentQueryType.ToString().Ellipsise(20);
queryTypeComboButton.Text = CurrentQueryType.ToString();
CurrentQueryType.SomeThingChanged += queryType_SomeThingChanged;
Setup();
}