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

Commit

Permalink
Fix viewsort info bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tanamaroby committed Nov 11, 2019
1 parent b533ac9 commit 1f9af68
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 1f9af68

Please sign in to comment.