Browse Source

fix default_app.js calling no-longer-existent API

Jeremy Apthorp 6 years ago
parent
commit
98829aa916
1 changed files with 1 additions and 5 deletions
  1. 1 5
      default_app/default_app.js

+ 1 - 5
default_app/default_app.js

@@ -1,4 +1,4 @@
-const { app, BrowserWindow, systemPreferences } = require('electron')
+const { app, BrowserWindow } = require('electron')
 const path = require('path')
 
 let mainWindow = null
@@ -11,10 +11,6 @@ app.on('window-all-closed', () => {
 exports.load = async (appUrl) => {
   await app.whenReady()
 
-  if (process.platform === 'darwin') {
-    systemPreferences.startAppLevelAppearanceTrackingOS()
-  }
-
   const options = {
     width: 900,
     height: 600,