Skip to content

Commit

Permalink
Fix issue when ConfirmationGUI never closes.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Jan 27, 2019
1 parent d8812cd commit 37a8bd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ else if (this.currentMode.equals(Mode.DELETE))
{
this.addon.getChallengesManager().deleteChallenge(challenge);
}

this.build();
});
return true;
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ else if (this.currentMode.equals(Mode.DELETE))
this.addon.getChallengesManager().
deleteChallengeLevel(challengeLevel);
}

this.build();
});
return true;
});
Expand Down

0 comments on commit 37a8bd7

Please sign in to comment.