Parcourir la source

Use content size

For consistent look and feel.
master
TheoryOfNekomata il y a 2 mois
Parent
révision
a257c2fa34
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. +3
    -2
      src/main/index.ts

+ 3
- 2
src/main/index.ts Voir le fichier

@@ -19,7 +19,7 @@ const defaultConfig: Config = {
const configPath = './config.json'
const naturalKeyWidth = 20
const pedalBoardWidth = 239
const height = 200
const height = 175

const getNaturalKeys = (range: string): number => {
const [startKeyRaw, endKeyRaw] = range.split('|')
@@ -66,7 +66,8 @@ function createWindow(config: Config): void {
minWidth: is.dev ? undefined : width,
maxWidth: is.dev ? undefined : width,
fullscreenable: false,
resizable: is.dev
resizable: is.dev,
useContentSize: true,
})

mainWindow.on('ready-to-show', () => {


Chargement…
Annuler
Enregistrer