From fe8f54d5b6ea2ac631db2b098325bc1ea5d97176 Mon Sep 17 00:00:00 2001 From: Eryk Rakowski Date: Sun, 26 Apr 2020 22:49:13 +0200 Subject: [PATCH] feat: bring back autofill to life (#447) --- src/main/services/messaging.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/services/messaging.ts b/src/main/services/messaging.ts index cab7a52b6..ac5a6736d 100644 --- a/src/main/services/messaging.ts +++ b/src/main/services/messaging.ts @@ -107,8 +107,7 @@ export const runMessagingService = (appWindow: AppWindow) => { ipcMain.on(`is-incognito-${id}`, (e) => { e.returnValue = appWindow.incognito; }); - /* - TODO: + ipcMain.on(`form-fill-show-${id}`, async (e, rect, name, value) => { const items = await getFormFillMenuItems(name, value); @@ -242,5 +241,5 @@ export const runMessagingService = (appWindow: AppWindow) => { const password = await getPassword('wexond', account); e.sender.send(id, password); }, - );*/ + ); };