We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec0f341 commit 252e2baCopy full SHA for 252e2ba
src/talk/talk.window.js
@@ -26,8 +26,10 @@ const { BrowserWindow } = require('electron')
26
*/
27
function createTalkWindow() {
28
const window = new BrowserWindow({
29
- width: 800,
30
- height: 600,
+ width: 1280,
+ height: 800,
31
+ minWidth: 600,
32
+ minHeight: 400,
33
show: false,
34
backgroundColor: '#171717',
35
autoHideMenuBar: true,
@@ -42,9 +44,7 @@ function createTalkWindow() {
42
44
// }
43
45
46
window.once('ready-to-show', () => {
- window.maximize()
47
window.show()
- //window.webContents.openDevTools({ mode: 'detach' })
48
})
49
50
window.loadURL(TALK_WINDOW_WEBPACK_ENTRY)
0 commit comments