Browse Source

fix(frame): remove frame from window

renovate/lint-staged-8.x
Jack Mallers 8 years ago
parent
commit
c05f5434f9
  1. 1
      app/components/Home.js
  2. 3
      app/main.dev.js

1
app/components/Home.js

@ -1,7 +1,6 @@
// @flow
import React, { Component } from 'react'
import { Link } from 'react-router-dom'
import InlineSVG from 'react-inline-svg'
import styles from './Home.css'
export default class Home extends Component {

3
app/main.dev.js

@ -61,8 +61,7 @@ app.on('ready', async () => {
mainWindow = new BrowserWindow({
show: false,
width: 1024,
height: 728
frame: false
});
mainWindow.loadURL(`file://${__dirname}/app.html`);

Loading…
Cancel
Save