aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/ServicesStore.js2
-rw-r--r--src/stores/SettingsStore.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index fda18b514..e38b82f03 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -766,7 +766,7 @@ export default class ServicesStore extends Store {
766 const isMuted = isAppMuted || service.isMuted; 766 const isMuted = isAppMuted || service.isMuted;
767 767
768 if (isAttached) { 768 if (isAttached) {
769 service.webview.setAudioMuted(isMuted); 769 service.webview.audioMuted = isMuted;
770 } 770 }
771 }); 771 });
772 } 772 }
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index 428b6342c..da63bc972 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -50,7 +50,7 @@ export default class SettingsStore extends Store {
50 () => { 50 () => {
51 const currentWindow = remote.getCurrentWindow(); 51 const currentWindow = remote.getCurrentWindow();
52 currentWindow.setMenuBarVisibility(!this.all.app.autohideMenuBar); 52 currentWindow.setMenuBarVisibility(!this.all.app.autohideMenuBar);
53 currentWindow.setAutoHideMenuBar(this.all.app.autohideMenuBar); 53 currentWindow.autoHideMenuBar = this.all.app.autohideMenuBar;
54 }, 54 },
55 ); 55 );
56 56