fix: Mac - shortcut for select all

This commit is contained in:
Kenta Kishikawa
2023-12-07 01:07:58 +09:00
parent aa7d91f2c5
commit f0fc50097b
3 changed files with 14 additions and 0 deletions

View File

@@ -229,6 +229,9 @@ ipcMain.on('window-action', async (event, arg) => {
case 'paste':
mainWindow.webContents.paste();
break;
case 'selectAll':
mainWindow.webContents.selectAll();
break;
}
});