Skip to content

Commit

Permalink
SDA-4563 - Ignore changing zoom if focused window is about Symphony (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
KiranNiranjan authored May 10, 2024
1 parent 6cba806 commit 1e3ea5e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/app/window-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,10 @@ export const zoomIn = () => {
return;
}

if (focusedWindow.getTitle() === 'Screen Sharing Indicator - Symphony') {
if (
focusedWindow.getTitle() === 'Screen Sharing Indicator - Symphony' ||
focusedWindow.getTitle() === 'About Symphony'
) {
return;
}

Expand Down Expand Up @@ -949,7 +952,10 @@ export const zoomOut = () => {
return;
}

if (focusedWindow.getTitle() === 'Screen Sharing Indicator - Symphony') {
if (
focusedWindow.getTitle() === 'Screen Sharing Indicator - Symphony' ||
focusedWindow.getTitle() === 'About Symphony'
) {
return;
}

Expand Down

0 comments on commit 1e3ea5e

Please sign in to comment.