This repository was archived by the owner on Jan 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class MainFrame extends JFrame {
1414 private ExtractionManager extractionManager ;
1515
1616 public MainFrame (File filePath ) {
17- setTitle ("Emoji Extractor by Mitch Talmadge " );
17+ setTitle ("Emoji Extractor" );
1818 this .setDefaultCloseOperation (DO_NOTHING_ON_CLOSE );
1919 this .addWindowListener (new WindowAdapter () {
2020 @ Override
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ public SelectionPanel(MainFrame frame) {
2929 this .startButton = new JButton ("Start Extraction" );
3030 startButton .addActionListener (this );
3131
32+ JLabel copyrightLabel = new JLabel ("Copyright 2015 Mitch Talmadge" );
33+
3234 JPanel browsePanel = new JPanel ();
3335 browsePanel .add (fileField );
3436 browsePanel .add (browseButton );
@@ -48,6 +50,10 @@ public SelectionPanel(MainFrame frame) {
4850 gbc .gridy = 1 ;
4951 gbc .gridwidth = 2 ;
5052 this .add (startButton , gbc );
53+ gbc .gridx = 0 ;
54+ gbc .gridy = 2 ;
55+ gbc .gridwidth = 2 ;
56+ this .add (copyrightLabel , gbc );
5157 }
5258
5359 private void openFileChooser () {
You can’t perform that action at this time.
0 commit comments