Skip to content

Commit 973a761

Browse files
committed
DotNetTools: Fix assembly menu ignoring FileBrowseExecutable settings
1 parent 9ae36fb commit 973a761

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

plugins/DotNetTools/asmpage.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,13 @@ VOID DotNetAsmShowContextMenu(
524524
{
525525
if (!PhIsNullOrEmptyString(node->PathText) && PhDoesFileExistsWin32(PhGetString(node->PathText)))
526526
{
527-
PhShellExploreFile(Context->WindowHandle, node->PathText->Buffer);
527+
PhShellExecuteUserString(
528+
Context->WindowHandle,
529+
L"FileBrowseExecutable",
530+
node->PathText->Buffer,
531+
FALSE,
532+
L"Make sure the Explorer executable file is present."
533+
);
528534
}
529535
}
530536
break;

0 commit comments

Comments
 (0)