Using globs in file chooser now defaults to case-insensitive

This commit is contained in:
Allan Odgaard
2014-08-23 18:24:02 +02:00
parent 5d72c8a2c5
commit 7a1be3ebd0

View File

@@ -38,7 +38,7 @@ namespace
if(str.find("*") != std::string::npos)
{
_is_glob = true;
_glob = path::glob_t(str);
_glob = path::glob_t(str, false, false);
}
else if(regexp::match_t const& m = regexp::search("(?x) \\A (?: (?:/(?=.*/))? (.*) / )? ([^/]*?) (?: :([\\d+:-x\\+]*) | @(.*) )? \\z", str))
{