-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Timetable window to access exit command
Timetable window currently cannot access exit command (bug). Adding ability for timetable to access exit command helps to enhance user experience. Let's update timetable window to access exit command.
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -470,12 +470,12 @@ If your changes to the data file makes its format invalid, AddressBook will disc | |
* Commands that start with *(M)* could only be accessed from Main Window | ||
* Commands that start with *(T)* could only be accessed from Timetable Window | ||
* Commands that start with *(B)* could be accessed from both Main and Customer Window | ||
* Commands that start with *(A)* could be accessed from all 3 windows: Main, Customer and Timetable Window. | ||
|
||
|
||
| Action | Format, Examples | | ||
|-----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| ***(C)* Add Customer** | Click on `Customers` in menu bar > `Address Book` then input `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…` <br/><br/>e.g., `add n/James Ho p/22224444 e/[email protected] a/123, Clementi Rd, 1234665 t/friend t/colleague` | | ||
| ***(B)* Clear all entries** | `clear` | | ||
| ***(C)* Delete Customer** | Click on `Customers` in menu bar > `Address Book` then input `delete INDEX`<br> e.g., `delete 3` | | ||
| ***(C)* Edit Customer details** | Click on `Customers` in menu bar > `Address Book` then input `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]…`<br><br/> e.g.,`edit 2 n/James Lee e/[email protected]` | | ||
| ***(C)* Find Customer** | Click on `Customers` in menu bar > `Address Book` then input `find KEYWORD [MORE_KEYWORDS]`<br> e.g., `find James Jake` | | ||
|
@@ -495,7 +495,8 @@ If your changes to the data file makes its format invalid, AddressBook will disc | |
| ***(M)* Show List of Completed Jobs** | `timetable_completed`<br/>OR<br/>Click on `Timetable` in menu bar > `Completed Jobs` | | ||
| ***(M)* Show List of Unscheduled Jobs** | `timetable_unscheduled`<br/>OR<br/>Click on `Timetable` in menu bar > `Unscheduled Jobs` | | ||
| ***(M)* Show Statistics** | `stats`<br/>OR<br/>Click on `Statistics` in menu bar > `Display Statistics` | | ||
| ***(B)* Help** | `help`<br/>Or<br/>Click on `Help` in menu bar > `Help` | | ||
| ***(B)* Exit** | `exit`<br/>Or<br/>Click on `Exit` in menu bar > `Exit` | | ||
| ***(B)* Clear all entries** | `clear` | | ||
| ***(A)* Help** | `help`<br/>Or<br/>Click on `Help` in menu bar > `Help` | | ||
| ***(A)* Exit** | `exit`<br/>Or<br/>Click on `Exit` in menu bar > `Exit` | | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters