mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Show context menu on right click in process explorer, #48498
This commit is contained in:
@@ -161,7 +161,7 @@ export function startup(data: ProcessExplorerData): void {
|
||||
const tableRows = document.getElementsByTagName('tr');
|
||||
for (let i = 0; i < tableRows.length; i++) {
|
||||
const tableRow = tableRows[i];
|
||||
tableRow.addEventListener('click', (e) => {
|
||||
tableRow.addEventListener('contextmenu', (e) => {
|
||||
showContextMenu(e);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user