public void ChangeFilterType(BuildLogType type)
 {
     this.currentFilterType = type;
     this.filtedLogs = this.FilterLogs();
     this.minPage = 0;
     this.maxPage = this.filtedLogs.Count / this.amountPerPage;
     this.currentPage = this.minPage;
     this.UpdateShowingLogs();
     this.UpdateCardIndexBtns();
     this.UpdateShowFavOnlyBtn();
 }
 public void CheckSelected(BuildLogType type)
 {
     base.GetComponent<CanBeSelectedBtn>().SetAsSelected(this.logType == type);
 }
Exemple #3
0
 public NewBuildLogMessageEventArgs(string content, BuildLogType buildLogType)
 {
     Content      = content;
     BuildLogType = buildLogType;
 }