* Cleanup thumbnail bar code - rename thumbnail method names for succinctness - Get rid of 'updateThumbnailBar' event -- use existing events - Get rid of 'blockPowerSave' and 'unblockPowerSave' events -- use a new combined 'onPlayerPlay' and 'onPlayerPause' events which apply to power save and updating the thumbbar * Consistent naming for enable/disable methods
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
module.exports = {
|
|
disable,
|
|
enable
|
|
}
|
|
|
|
var electron = require('electron')
|
|
var windows = require('./windows')
|
|
|
|
function enable () {
|
|
// Register play/pause media key, available on some keyboards.
|
|
electron.globalShortcut.register(
|
|
'MediaPlayPause',
|
|
() => windows.main.dispatch('playPause')
|
|
)
|
|
}
|
|
|
|
function disable () {
|
|
// Return the media key to the OS, so other apps can use it.
|
|
electron.globalShortcut.unregister('MediaPlayPause')
|
|
}
|