some fixes to the fs

This commit is contained in:
vapormusic 2022-01-08 20:10:49 +07:00
parent b41a8a88b3
commit 98847ee92c
5 changed files with 70 additions and 5 deletions

View file

@ -3048,6 +3048,11 @@ const app = new Vue({
gain: gain,
peak: peak
}
},
fullscreen(flag){
if (flag){
ipcRenderer.send('setFullScreen', true); app.appMode = 'fullscreen';}
else { ipcRenderer.send('setFullScreen', false); app.appMode = 'player';}
}
}