Résolution #8 Modifications classes et méthodes

This commit is contained in:
2020-12-07 22:18:54 +01:00
parent 3283cd2f02
commit 3c053fb45f
15 changed files with 702 additions and 227 deletions

View File

@@ -23,7 +23,7 @@ public class AppThinkerStatusbar extends JPanel {
this.setBorder(new BevelBorder(BevelBorder.LOWERED));
this.setLayout(new GridLayout(1,3));
_statusLabel = new JLabel("Créez ou importez un projet pour commencer.");
_statusLabel = new JLabel("Create or import a project to start.");
this.add(_statusLabel);
JPanel actionBar = new JPanel();
@@ -39,7 +39,7 @@ public class AppThinkerStatusbar extends JPanel {
this.add(actionBar);
_fileLabel = new JLabel("Aucun projet ouvert");
_fileLabel = new JLabel("No open project.");
_fileLabel.setHorizontalAlignment(JLabel.RIGHT);
this.add(_fileLabel);
}