mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-30 12:43:59 -06:00
Electron-207 - Fixed scroll issue for Windows OS
This commit is contained in:
parent
57ca4f211c
commit
1c4d6d45e2
@ -7,6 +7,7 @@ const path = require('path');
|
||||
const fs = require('fs');
|
||||
const log = require('../log.js');
|
||||
const logLevels = require('../enums/logLevels.js');
|
||||
const { isMac } = require('../utils/misc');
|
||||
|
||||
let basicAuthWindow;
|
||||
|
||||
@ -14,7 +15,7 @@ const local = {};
|
||||
|
||||
let windowConfig = {
|
||||
width: 360,
|
||||
height: 270,
|
||||
height: isMac ? 270 : 295,
|
||||
show: false,
|
||||
modal: true,
|
||||
autoHideMenuBar: true,
|
||||
|
Loading…
Reference in New Issue
Block a user