Compare commits

..

No commits in common. "933ace12bbf6d2bd1b267d721e4d24596281df14" and "5fdb799d3c883bc51c79896fcb2efb747684d972" have entirely different histories.

2 changed files with 1 additions and 11 deletions

View File

@ -201,8 +201,6 @@ namespace AxibugEmuOnline.Client
public void Pop<T>(List<T> menus, int defaultIndex = 0, Action onClose = null) where T : InternalOptionMenu
{
if (menus == null || menus.Count == 0) return;
if (m_hideTween != null)
{
m_hideTween.Kill(true);

View File

@ -47,15 +47,7 @@ namespace AxibugEmuOnline.Client
private void SavFile_OnSavSuccessed()
{
if (MenuData.SavFile.GetCurrentState() is SaveFile.SyncedState)
{
//如果原本就处于已经同步状态,那么此处将直接转换到上传本地文档的状态
MenuData.SavFile.FSM.ChangeState<SaveFile.UploadingState>();
}
else
{
MenuData.SavFile.TrySync();
}
MenuData.SavFile.TrySync();
RefreshUI();
}