fix: folder open not working in devtools (#15387)
This commit is contained in:
parent
1f3a89197c
commit
d21d83cfc8
2 changed files with 11 additions and 1 deletions
|
@ -512,8 +512,9 @@ void InspectableWebContentsImpl::ShowItemInFolder(
|
||||||
const std::string& file_system_path) {
|
const std::string& file_system_path) {
|
||||||
if (file_system_path.empty())
|
if (file_system_path.empty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
base::FilePath path = base::FilePath::FromUTF8Unsafe(file_system_path);
|
base::FilePath path = base::FilePath::FromUTF8Unsafe(file_system_path);
|
||||||
platform_util::ShowItemInFolder(path);
|
platform_util::OpenItem(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
void InspectableWebContentsImpl::SaveToFile(const std::string& url,
|
void InspectableWebContentsImpl::SaveToFile(const std::string& url,
|
||||||
|
|
|
@ -4,10 +4,19 @@ window.onload = function () {
|
||||||
// Use menu API to show context menu.
|
// Use menu API to show context menu.
|
||||||
window.InspectorFrontendHost.showContextMenuAtPoint = createMenu
|
window.InspectorFrontendHost.showContextMenuAtPoint = createMenu
|
||||||
|
|
||||||
|
// correct for Chromium returning undefined for filesystem
|
||||||
|
window.Persistence.FileSystemWorkspaceBinding.completeURL = completeURL
|
||||||
|
|
||||||
// Use dialog API to override file chooser dialog.
|
// Use dialog API to override file chooser dialog.
|
||||||
window.UI.createFileSelectorElement = createFileSelectorElement
|
window.UI.createFileSelectorElement = createFileSelectorElement
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Extra / is needed as a result of MacOS requiring absolute paths
|
||||||
|
function completeURL (project, path) {
|
||||||
|
project = 'file:///'
|
||||||
|
return `${project}${path}`
|
||||||
|
}
|
||||||
|
|
||||||
window.confirm = function (message, title) {
|
window.confirm = function (message, title) {
|
||||||
const { dialog } = require('electron').remote
|
const { dialog } = require('electron').remote
|
||||||
if (title == null) {
|
if (title == null) {
|
||||||
|
|
Loading…
Reference in a new issue