Skip to content
This repository was archived by the owner on Jan 21, 2024. It is now read-only.

Commit faace80

Browse files
author
Mitch Talmadge
committed
Moved copyright message
1 parent 76c3fc0 commit faace80

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/me/MitchT/EmojiExtractor/GUI/MainFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/me/MitchT/EmojiExtractor/GUI/SelectionPanel.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)