Add to tray when closed setting

This commit is contained in:
Franco Montenegro 2020-08-13 13:59:44 -03:00 committed by Sean Yesmunt
parent 05b949d470
commit 210bb80f2c
2 changed files with 3 additions and 0 deletions

2
dist/bundle.es.js vendored
View file

@ -645,6 +645,7 @@ const AUTOPLAY_NEXT = 'autoplay_next';
const OS_NOTIFICATIONS_ENABLED = 'os_notifications_enabled'; const OS_NOTIFICATIONS_ENABLED = 'os_notifications_enabled';
const AUTO_DOWNLOAD = 'auto_download'; const AUTO_DOWNLOAD = 'auto_download';
const AUTO_LAUNCH = 'auto_launch'; const AUTO_LAUNCH = 'auto_launch';
const TO_TRAY_WHEN_CLOSED = 'to_tray_when_closed';
const SUPPORT_OPTION = 'support_option'; const SUPPORT_OPTION = 'support_option';
const HIDE_BALANCE = 'hide_balance'; const HIDE_BALANCE = 'hide_balance';
const HIDE_SPLASH_ANIMATION = 'hide_splash_animation'; const HIDE_SPLASH_ANIMATION = 'hide_splash_animation';
@ -683,6 +684,7 @@ var settings = /*#__PURE__*/Object.freeze({
OS_NOTIFICATIONS_ENABLED: OS_NOTIFICATIONS_ENABLED, OS_NOTIFICATIONS_ENABLED: OS_NOTIFICATIONS_ENABLED,
AUTO_DOWNLOAD: AUTO_DOWNLOAD, AUTO_DOWNLOAD: AUTO_DOWNLOAD,
AUTO_LAUNCH: AUTO_LAUNCH, AUTO_LAUNCH: AUTO_LAUNCH,
TO_TRAY_WHEN_CLOSED: TO_TRAY_WHEN_CLOSED,
SUPPORT_OPTION: SUPPORT_OPTION, SUPPORT_OPTION: SUPPORT_OPTION,
HIDE_BALANCE: HIDE_BALANCE, HIDE_BALANCE: HIDE_BALANCE,
HIDE_SPLASH_ANIMATION: HIDE_SPLASH_ANIMATION, HIDE_SPLASH_ANIMATION: HIDE_SPLASH_ANIMATION,

View file

@ -22,6 +22,7 @@ export const AUTOPLAY_NEXT = 'autoplay_next';
export const OS_NOTIFICATIONS_ENABLED = 'os_notifications_enabled'; export const OS_NOTIFICATIONS_ENABLED = 'os_notifications_enabled';
export const AUTO_DOWNLOAD = 'auto_download'; export const AUTO_DOWNLOAD = 'auto_download';
export const AUTO_LAUNCH = 'auto_launch'; export const AUTO_LAUNCH = 'auto_launch';
export const TO_TRAY_WHEN_CLOSED = 'to_tray_when_closed';
export const SUPPORT_OPTION = 'support_option'; export const SUPPORT_OPTION = 'support_option';
export const HIDE_BALANCE = 'hide_balance'; export const HIDE_BALANCE = 'hide_balance';
export const HIDE_SPLASH_ANIMATION = 'hide_splash_animation'; export const HIDE_SPLASH_ANIMATION = 'hide_splash_animation';