Skip to content
This repository has been archived by the owner on Apr 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #355 from robytanama/branch-PPP
Browse files Browse the repository at this point in the history
[v1.4] Fix viewsort info bug
  • Loading branch information
seanlowjk authored Nov 11, 2019
2 parents b533ac9 + 1f9af68 commit 565f4d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/seedu/savenus/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,8 @@ private CommandResult executeCommand(String commandText) throws CommandException
|| commandResult.getFeedbackToUser().equals(InfoCommand.THEME_INFO)
|| commandResult.getFeedbackToUser().equals(InfoCommand.TOP_UP_INFO)
|| commandResult.getFeedbackToUser().equals(InfoCommand.WITHDRAW_INFO)
|| commandResult.getFeedbackToUser().equals(InfoCommand.SHOW_INFO)) {
|| commandResult.getFeedbackToUser().equals(InfoCommand.SHOW_INFO)
|| commandResult.getFeedbackToUser().equals(InfoCommand.VIEW_SORT_INFO)) {
if (infoWindow.isShowing()) {
infoWindow.closeWindow();
}
Expand Down

0 comments on commit 565f4d9

Please sign in to comment.