Add flag to enable activity menu

This commit is contained in:
Deluan 2020-11-09 15:31:05 -05:00
parent 56803d0151
commit a2e76d6898
5 changed files with 9 additions and 2 deletions

View file

@ -51,6 +51,7 @@ type configOptions struct {
DevPreCacheAlbumArtwork bool
DevDisableTrackCoverArt bool
DevOldCacheLayout bool
DevActivityMenu bool
}
type scannerOptions struct {
@ -138,6 +139,7 @@ func init() {
viper.SetDefault("devprecachealbumartwork", false)
viper.SetDefault("devoldcachelayout", false)
viper.SetDefault("devdisabletrackcoverart", false)
viper.SetDefault("devactivitymenu", false)
}
func InitConfig(cfgFile string) {