public void ApplyDisplayFormat(Modification.DisplayFormat type)
 {
     songName        = SongNamesModifier.ToFormattedTitle(Source, type);
     songSubName     = SongNamesModifier.ToFormattedSubtitle(Source, type);
     songAuthorName  = SongNamesModifier.ToFormattedAuthor(Source, type);
     levelAuthorName = SongNamesModifier.ToFormattedMapper(Source, type);
 }
Exemplo n.º 2
0
        public void OnClickManual()
        {
            Logger.Debug("OnClick Manual");

            if (IsExecuting)
            {
                return;
            }
            IsExecuting = true;
            try
            {
                SongNamesModifier.ModifySongCoreStore(JSConfig.Instance.GetViewType(), true);

                ManualButton.SetButtonText("Complete");
            }
            catch (Exception ex)
            {
                Logger.Debug(ex);
            }
        }