Skip to content

Commit

Permalink
SDA-4763 - Add additional px for min window size
Browse files Browse the repository at this point in the history
  • Loading branch information
KiranNiranjan committed Dec 19, 2024
1 parent 51f34d0 commit b4d2d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/child-window-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import {
const DEFAULT_POP_OUT_WIDTH = 400;
const DEFAULT_POP_OUT_HEIGHT = 600;

const MIN_WIDTH = 400;
const MIN_HEIGHT = 400;
const MIN_WIDTH = isWindowsOS ? 413 : 400;
const MIN_HEIGHT = isWindowsOS ? 405 : 400;

const CHILD_WINDOW_EVENTS = ['enter-full-screen', 'leave-full-screen'];

Expand Down

0 comments on commit b4d2d53

Please sign in to comment.