Skip to content

Commit

Permalink
refactor: resolução de tela de 1024x768
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffanoP committed Jun 29, 2021
1 parent 8aa2838 commit 6e3af8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ public static void main(String[] args) {
@Override
public void start(Stage primaryStage) {
primaryStage.setScene(GerenciadorTelas.getInstance().getMainScene());
primaryStage.setTitle("Sistema de Gerenciamento de Empréstimo Pessoal Alternativo");
primaryStage.setTitle("Sistema de Gerenciamento de Empréstimo Pessoal Alternativo");

primaryStage.setWidth(600);
primaryStage.setHeight(400);
primaryStage.setWidth(1024);
primaryStage.setHeight(768);

GerenciadorTelas.getInstance().setPrimaryStage(primaryStage);

Expand Down

0 comments on commit 6e3af8a

Please sign in to comment.