package.json
にウィンドウサイズの設定を書くと思いますが、width
とheight
だけでは狙ったサイズになりません。
max_width
、max_height
も設定する必要があるようです。
例) ウィンドウサイズを960x540で固定したい場合
max_width、max_heightの設定がないとき
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"name": "tyranoscript",
"main": "app://./index.html",
"window": {
"title": "setup tyrano engine",
"icon": "link.png",
"toolbar": false,
"resizable": false,
"frame": true,
"width": 960,
"height": 540,
"position": "mouse"
},
"webkit": {
"plugin": true
}
}
|
このように、微妙に余白ができてしまいます。
max_width、max_heightの設定があるとき
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"name": "tyranoscript",
"main": "app://./index.html",
"window": {
"title": "setup tyrano engine",
"icon": "link.png",
"toolbar": false,
"resizable": false,
"frame": true,
"width": 960,
"height": 540,
"max_width": 960, // ← これ
"max_height": 540, // ← これ
"position": "mouse"
},
"webkit": {
"plugin": true
}
}
|
きれいに表示されました。