Skip to content

Commit

Permalink
Items that appear in the search browser will no longer be trimmer.
Browse files Browse the repository at this point in the history
closes #103
  • Loading branch information
maforget committed Aug 21, 2024
1 parent efe3b17 commit 4099dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ComicRack.Engine/Controls/SearchBrowserControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ private void BuildList(int start)
string stringPropertyValue = item.GetStringPropertyValue(selectionInfo.Property, ComicValueType.Shadow);
if (!selectionInfo.MultipleValues || stringPropertyValue.IndexOfAny(listSeparators) == -1)
{
hashSet.Add(stringPropertyValue.Trim());
hashSet.Add(stringPropertyValue);
continue;
}
hashSet.AddRange(from vs in stringPropertyValue.Split(listSeparators)
Expand Down

0 comments on commit 4099dbf

Please sign in to comment.