Merge pull request #10902 from mattlyons0/master

🐧 Don't wait for xdg-open to exit
This commit is contained in:
Charles Kerr 2017-10-26 09:43:34 -05:00 committed by GitHub
commit c72e0c1508

View file

@ -75,11 +75,11 @@ bool ShowItemInFolder(const base::FilePath& full_path) {
if (!base::DirectoryExists(dir))
return false;
return XDGOpen(dir.value(), true);
return XDGOpen(dir.value(), false);
}
bool OpenItem(const base::FilePath& full_path) {
return XDGOpen(full_path.value(), true);
return XDGOpen(full_path.value(), false);
}
bool OpenExternal(const GURL& url, bool activate) {