Skip to content

Commit

Permalink
[Fix] ゲームリストの表示の問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
towa0131 committed Sep 4, 2023
1 parent b71168b commit a0c574a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ADVNow/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ public bool canExcuteCommand()
public void LoadGamesFromDB()
{
this.AllGames.Clear();
this.Games.Clear();
List<Game> games = this.db.Query("games").OrderByDesc("LastPlay").Get<Game>().ToList();
foreach (Game game in games)
{
Expand Down

0 comments on commit a0c574a

Please sign in to comment.