Skip to content

Commit

Permalink
SDA-4763 - Add additional px for min window size (#2239)
Browse files Browse the repository at this point in the history
  • Loading branch information
KiranNiranjan authored Dec 19, 2024
1 parent 51f34d0 commit 952bc76
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
@@ -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'];

0 comments on commit 952bc76

Please sign in to comment.