Clean up inviteLink handling, harden compose input
This commit is contained in:
parent
986d8a66bc
commit
fc12d02a8d
12 changed files with 59 additions and 3 deletions
6
main.js
6
main.js
|
@ -593,6 +593,12 @@ ipc.on('show-window', () => {
|
|||
showWindow();
|
||||
});
|
||||
|
||||
ipc.on('set-secure-input', (_sender, enabled) => {
|
||||
if (app.setSecureKeyboardEntryEnabled) {
|
||||
app.setSecureKeyboardEntryEnabled(enabled);
|
||||
}
|
||||
});
|
||||
|
||||
ipc.on('title-bar-double-click', () => {
|
||||
if (!mainWindow) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue