1
0
mirror of https://github.com/rhysd/Mstdn.git synced 2025-02-02 06:52:13 +01:00

fix icon path

This commit is contained in:
rhysd 2017-04-16 22:07:13 +09:00
parent 05bf4de54e
commit eb8719da54

View File

@ -7,7 +7,7 @@ import {Config, Account} from './config';
const IS_DEBUG = process.env.NODE_ENV === 'development';
const IS_DARWIN = process.platform === 'darwin';
const APP_ICON = path.join(__dirname, '..', 'resources', 'icon.png');
const APP_ICON = path.join(__dirname, '..', 'resources', 'icon', 'icon.png');
const PRELOAD_JS = path.join(__dirname, '..', 'renderer', 'preload.js');
const DEFAULT_WIDTH = 340;
const DEFAULT_HEIGHT = 400;