Skip to content

Commit

Permalink
Merge pull request #200 from PateShin/branch-extra-update
Browse files Browse the repository at this point in the history
Branch extra update
  • Loading branch information
PateShin authored Apr 15, 2024
2 parents 3aa7f01 + aa07af3 commit 68cb51c
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/diagrams/FindEmployeeNameSequenceDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ deactivate FindCommand

[<--LogicManager
deactivate LogicManager
@enduml
@enduml
Binary file modified docs/images/AutoComplete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/Ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/ViewTransaction.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/UiManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class UiManager implements Ui {
public static final String ALERT_DIALOG_PANE_FIELD_ID = "alertDialogPane";

private static final Logger logger = LogsCenter.getLogger(UiManager.class);
private static final String ICON_APPLICATION = "/images/address_book_32.png";
private static final String ICON_APPLICATION = "/images/payBack_icon.png";

private Logic logic;
private MainWindow mainWindow;
Expand Down
Binary file added src/main/resources/images/payBack_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<fx:root type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1"
title="PayBack" minWidth="450" maxWidth="700" minHeight="600" maxHeight="700" onCloseRequest="#handleExit">
<icons>
<Image url="@/images/address_book_32.png" />
<Image url="@/images/payBack_icon.png" />
</icons>
<scene>
<Scene>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/address/commons/util/AppUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class AppUtilTest {

@Test
public void getImage_exitingImage() {
assertNotNull(AppUtil.getImage("/images/address_book_32.png"));
assertNotNull(AppUtil.getImage("/images/payBack_icon.png"));
}

@Test
Expand Down

0 comments on commit 68cb51c

Please sign in to comment.