Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
isHarryh committed Sep 9, 2024
1 parent fae3a03 commit 25ad2c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 更新日志 / CHANGELOG

## 3.2
## v3.2
| **新增** | |
|:----------------------------------|:-------------------------|
| [`#63`]<br>[`#70`]<br>[`6cbf7b2`] | 新增了在启动器抛出错误时的导出日志按钮。 |
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/cn/harryh/arkpets/EmbeddedLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void invoke(int error, long description) {
// Instantiate the App
Lwjgl3Application app = new Lwjgl3Application(new ArkPets(TITLE), config);
} catch (Exception e) {
Logger.error("System", "An fatal error occurs in the runtime of Lwjgl3Application, details see below.", e);
Logger.error("System", "A fatal error occurs in the runtime of Lwjgl3Application, details see below.", e);
System.exit(-1);
}
Logger.info("System", "Exited from EmbeddedLauncher successfully");
Expand Down
4 changes: 2 additions & 2 deletions desktop/src/cn/harryh/arkpets/guitasks/GuiTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ private JFXDialog getDialog(StackPane root, Task<Boolean> boundTask, boolean can

// Add components to the dialog
VBox content = new VBox();
Label h2 = (Label) GuiPrefabs.DialogUtil.getPrefabsH2(getHeader());
Label h3 = (Label) GuiPrefabs.DialogUtil.getPrefabsH3(getInitialContent());
Label h2 = GuiPrefabs.DialogUtil.getPrefabsH2(getHeader());
Label h3 = GuiPrefabs.DialogUtil.getPrefabsH3(getInitialContent());
content.setSpacing(5);
content.getChildren().add(h2);
content.getChildren().add(new Separator());
Expand Down

0 comments on commit 25ad2c4

Please sign in to comment.