Skip to content

Commit

Permalink
AAAAA
Browse files Browse the repository at this point in the history
  • Loading branch information
code-irisnk committed Apr 10, 2024
1 parent e076893 commit ebc5990
Show file tree
Hide file tree
Showing 3 changed files with 2,567 additions and 19 deletions.
3 changes: 2 additions & 1 deletion src/main/java/team/elrant/bubbles/gui/LoginApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import org.jetbrains.annotations.NotNull;

import java.io.IOException;
import java.util.Objects;

/**
* The LoginApplication class is the entry point for the login GUI application.
Expand Down Expand Up @@ -38,7 +39,7 @@ public static void main(String[] args) {
public void start(@NotNull Stage stage) throws Exception {
try {
@NotNull FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("LoginView.fxml"));
@NotNull Scene scene = new Scene(fxmlLoader.load(), 320, 240);
@NotNull Scene scene = new Scene(fxmlLoader.load(), 280, 200);
stage.setTitle("Login");
stage.setScene(scene);
stage.centerOnScreen();
Expand Down
Loading

0 comments on commit ebc5990

Please sign in to comment.