Added the function for toggling hide user info from drop menu
This commit is contained in:
parent
e8446f8d92
commit
90634b52b2
1 changed files with 9 additions and 0 deletions
|
@ -3180,6 +3180,15 @@ const app = new Vue({
|
|||
ipcRenderer.send('setFullScreen', false);
|
||||
app.appMode = 'player';
|
||||
}
|
||||
},
|
||||
toggleHideUserInfo() {
|
||||
if(this.chrome.hideUserInfo) {
|
||||
this.cfg.visual.showuserinfo = true
|
||||
this.chrome.hideUserInfo = false
|
||||
} else {
|
||||
this.cfg.visual.showuserinfo = false
|
||||
this.chrome.hideUserInfo = true
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue