Skip to content

Commit

Permalink
SDA-4243 - Fix issue with lower-left calculation (#1910)
Browse files Browse the repository at this point in the history
Signed-off-by: Kiran Niranjan <kiran.niranjan@symphony.com>
  • Loading branch information
KiranNiranjan committed Jul 25, 2023
1 parent a68573d commit c2e8096
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/renderer/notification-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ export default class NotificationHandler {
break;
case 'lower-left':
this.settings.corner.x += offSet;
this.settings.corner.y +=
workAreaHeight - offSet - CALL_NOTIFICATION_HEIGHT;
this.settings.corner.y += workAreaHeight - offSet;
// Call Notification settings
this.callNotificationSettings.x += offSet;
this.callNotificationSettings.y += offSet;
Expand Down

0 comments on commit c2e8096

Please sign in to comment.