Skip to content

Commit

Permalink
Renamed the "login"
Browse files Browse the repository at this point in the history
  • Loading branch information
Sciaopersone committed Feb 22, 2024
1 parent 8a79292 commit 9a04a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/team/elrant/bubbles/gui/LoginApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
import javafx.stage.Stage;
import java.io.IOException;

public class HelloApplication extends Application {
public class LoginApplication extends Application {
@Override
public void start(@org.jetbrains.annotations.NotNull Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
FXMLLoader fxmlLoader = new FXMLLoader(LoginApplication.class.getResource("login-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
stage.setTitle("Hello!");
stage.setTitle("Login");
stage.setScene(scene);
stage.show();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/team/elrant/bubbles/gui/LoginController.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import javafx.scene.control.TextField;
import team.elrant.bubbles.xmpp.ConnectedUser;

public class HelloController {
public class LoginController {
@FXML
private TextField username_field;
@FXML
Expand Down

0 comments on commit 9a04a7e

Please sign in to comment.