aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/index.js b/src/index.js
index 96bcea4ac..9c1f94f18 100644
--- a/src/index.js
+++ b/src/index.js
@@ -4,7 +4,7 @@ import path from 'path';
4 4
5import windowStateKeeper from 'electron-window-state'; 5import windowStateKeeper from 'electron-window-state';
6 6
7import { isDevMode, isMac, isWindows } from './environment'; 7import { isDevMode, isMac, isWindows, isLinux } from './environment';
8import ipcApi from './electron/ipc-api'; 8import ipcApi from './electron/ipc-api';
9import Tray from './lib/Tray'; 9import Tray from './lib/Tray';
10import Settings from './electron/Settings'; 10import Settings from './electron/Settings';
@@ -48,11 +48,11 @@ if (isSecondInstance) {
48 app.exit(); 48 app.exit();
49} 49}
50 50
51// Lets disable Hardware Acceleration until we have a better solution 51// Fix Unity indicator issue
52// to deal with the high-perf-gpu requirement of some services 52// https://github.com/electron/electron/issues/9046
53 53if (isLinux && ['Pantheon', 'Unity:Unity7'].indexOf(process.env.XDG_CURRENT_DESKTOP) !== -1) {
54// Disabled to test tweetdeck glitches 54 process.env.XDG_CURRENT_DESKTOP = 'Unity'
55// app.disableHardwareAcceleration(); 55}
56 56
57// Initialize Settings 57// Initialize Settings
58const settings = new Settings(); 58const settings = new Settings();
@@ -73,7 +73,7 @@ const createWindow = () => {
73 minWidth: 600, 73 minWidth: 600,
74 minHeight: 500, 74 minHeight: 500,
75 titleBarStyle: isMac ? 'hidden' : '', 75 titleBarStyle: isMac ? 'hidden' : '',
76 frame: false, 76 frame: isLinux,
77 backgroundColor: '#3498db', 77 backgroundColor: '#3498db',
78 }); 78 });
79 79