mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 13:32:42 +01:00
Remove implementation of global shortcuts for media control.
This commit is contained in:
parent
326038f262
commit
84fd35ce0e
11
src/main.ts
11
src/main.ts
@ -3,14 +3,12 @@ import {
|
|||||||
app,
|
app,
|
||||||
BrowserWindow,
|
BrowserWindow,
|
||||||
components,
|
components,
|
||||||
globalShortcut,
|
|
||||||
ipcMain,
|
ipcMain,
|
||||||
protocol,
|
protocol,
|
||||||
session,
|
session,
|
||||||
} from "electron";
|
} from "electron";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { globalEvents } from "./constants/globalEvents";
|
import { globalEvents } from "./constants/globalEvents";
|
||||||
import { mediaKeys } from "./constants/mediaKeys";
|
|
||||||
import { settings } from "./constants/settings";
|
import { settings } from "./constants/settings";
|
||||||
import { setDefaultFlags, setManagedFlagsFromSettings } from "./features/flags/flags";
|
import { setDefaultFlags, setManagedFlagsFromSettings } from "./features/flags/flags";
|
||||||
import {
|
import {
|
||||||
@ -147,14 +145,6 @@ function registerHttpProtocols() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function addGlobalShortcuts() {
|
|
||||||
Object.keys(mediaKeys).forEach((key) => {
|
|
||||||
globalShortcut.register(`${key}`, () => {
|
|
||||||
mainWindow.webContents.send("globalEvent", `${(mediaKeys as any)[key]}`);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// This method will be called when Electron has finished
|
// This method will be called when Electron has finished
|
||||||
// initialization and is ready to create browser windows.
|
// initialization and is ready to create browser windows.
|
||||||
// Some APIs can only be used after this event occurs.
|
// Some APIs can only be used after this event occurs.
|
||||||
@ -174,7 +164,6 @@ app.on("ready", async () => {
|
|||||||
createWindow();
|
createWindow();
|
||||||
addMenu(mainWindow);
|
addMenu(mainWindow);
|
||||||
createSettingsWindow();
|
createSettingsWindow();
|
||||||
addGlobalShortcuts();
|
|
||||||
if (settingsStore.get(settings.trayIcon)) {
|
if (settingsStore.get(settings.trayIcon)) {
|
||||||
addTray(mainWindow, { icon });
|
addTray(mainWindow, { icon });
|
||||||
refreshTray(mainWindow);
|
refreshTray(mainWindow);
|
||||||
|
Loading…
Reference in New Issue
Block a user