aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2024-05-13 22:47:35 +0100
committerLibravatar GitHub <noreply@github.com>2024-05-13 22:47:35 +0100
commit6167b6c7e9f49adee065646e2d28e28500753ebd (patch)
tree15d4746188e95af98ae7cf6e426c82ffdfed7ee1 /src/electron
parentFix notifications on all services (#1593) (diff)
downloadferdium-app-6167b6c7e9f49adee065646e2d28e28500753ebd.tar.gz
ferdium-app-6167b6c7e9f49adee065646e2d28e28500753ebd.tar.zst
ferdium-app-6167b6c7e9f49adee065646e2d28e28500753ebd.zip
Fix accelerators (#1752)
* fix: accelerators with numbers * fix: control zoom in * fix logic on macOS * fix for linux * chore: prepare-code * chore: adjust comments
Diffstat (limited to 'src/electron')
-rw-r--r--src/electron/ipc-api/dnd.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/electron/ipc-api/dnd.ts b/src/electron/ipc-api/dnd.ts
index 30ace7c84..240e4a1cf 100644
--- a/src/electron/ipc-api/dnd.ts
+++ b/src/electron/ipc-api/dnd.ts
@@ -8,7 +8,7 @@ export default async () => {
8 if (!isMac) { 8 if (!isMac) {
9 return false; 9 return false;
10 } 10 }
11 11 // @ts-expect-error
12 const { getDoNotDisturb } = await import('macos-notification-state'); 12 const { getDoNotDisturb } = await import('macos-notification-state');
13 13
14 if (!getDoNotDisturb) { 14 if (!getDoNotDisturb) {