Skip to content

Commit

Permalink
feat: Asset Browser: search with any slash (/\)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikich340 committed Jul 28, 2023
1 parent 25048c7 commit e066a8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions WolvenKit/Forms/frmAssetBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ private void Search(string s, int bundleTypeIdx, int fileTypeIdx)
{
var extension = "";
string bundletype = "";
s = s.Replace("/", "\\");

if (fileExtensionsCB.SelectedIndex != -1)
extension = fileExtensionsCB.Items[fileTypeIdx].ToString();
if (bundleExtensionCB.SelectedIndex != -1)
Expand Down

0 comments on commit e066a8b

Please sign in to comment.