Skip to content

Commit de418cb

Browse files
committed
reduce calc size
1 parent bc9f521 commit de418cb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/programs/Calculator/CalculatorLauncher/CalculatorLauncher.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ function CalculatorLauncher({}: CalculatorLauncherProps) {
1212
windowType={windowType}
1313
WindowTitle="Calculator"
1414
// TODO: Consider supoprting an `allowResize` prop, instead of having to repeat the initial dimensions for both min and max
15-
initialDimensions={{ height: 400, width: 400 }}
16-
maxDimensions={{ height: 400, width: 400 }}
17-
minDimensions={{ height: 400, width: 400 }}
15+
initialDimensions={{ height: 400, width: 250 }}
16+
maxDimensions={{ height: 400, width: 250 }}
17+
minDimensions={{ height: 400, width: 250 }}
1818
icon=""
1919
menus={[]}
2020
appContent={<Calculator />}

0 commit comments

Comments
 (0)