Mise à jour de 'src/Graphics/GraphicsCore.java'
This commit is contained in:
parent
d38b15d808
commit
522b60c86d
@ -26,8 +26,8 @@ import javax.swing.filechooser.FileNameExtensionFilter;
|
||||
*/
|
||||
|
||||
public class GraphicsCore extends JFrame {
|
||||
private final Dimension DEFAULT_FRAME_SIZE;
|
||||
private final Dimension MINIMUM_FRAME_SIZE;
|
||||
private final Dimension DEFAULT_FRAME_SIZE = new Dimension(800, 600);
|
||||
private final Dimension MINIMUM_FRAME_SIZE = new Dimension(600, 500);
|
||||
private final CardLayout cards;
|
||||
private JLabel textField;
|
||||
private URL url;
|
||||
@ -35,8 +35,6 @@ public class GraphicsCore extends JFrame {
|
||||
public GraphicsCore() {
|
||||
super("Inspecteur JSON - Romain & Bilal");
|
||||
|
||||
this.DEFAULT_FRAME_SIZE = new Dimension(800, 600);
|
||||
this.MINIMUM_FRAME_SIZE = new Dimension(600, 500);
|
||||
this.url = null;
|
||||
this.textField = new JLabel("Clique ici pour choisir le chemin du fichier JSON ->");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user