Skip to content

Commit

Permalink
Update DG
Browse files Browse the repository at this point in the history
  • Loading branch information
sp4ce-cowboy committed Nov 13, 2023
1 parent 9a2c085 commit e140fa1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,10 @@ the user with the ability to type their commands into the application.
For the transaction list pane, we have a custom `TransactionListPanel` class that is a `ListView` to
provide the user with a scrollable list of transactions. This view is updated whenever the user executes
commands that modify the transaction list. (i.e. `add`, `delete`, `edit`, `clear`)
commands that modify the transaction list. (i.e. `add`, `delete`, `edit`, `clear`). This `ListView` is displayed
in a reverse scrolling manner so that the user's most recent transactions will be added to the top of the
`TransactionListPanel`, right below the `CommandBox`, so that the user will have immediate feedback after adding
a transaction via text input into the `CommandBox`.

For the command results pane, we have a custom `ResultDisplay` class. This pane displays the results of the
user's command execution. This view is updated whenever the user executes commands that modify the transaction.
Expand Down

0 comments on commit e140fa1

Please sign in to comment.