Skip to content

Commit

Permalink
Merge pull request #66 from mattgolem/feature/cc-and-attachment-names
Browse files Browse the repository at this point in the history
Feature/cc and attachment names
  • Loading branch information
nickrussler authored Mar 24, 2024
2 parents 8c55270 + 4f5b019 commit a1221a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ Usage: EmailToPDFConverter [options] <email-file>
-e, --error
Display only Error messages.
Default: false
-aa, --add-attachment-names
Add the list of attachment names under the body text
Default: false
-a, --extract-attachments
Extract Attachments.
Default: false
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/gui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,16 +245,16 @@ public void stateChanged(ChangeEvent e) {
chckbxUseProxy.setBounds(10, 43, 86, 23);
panel.add(chckbxUseProxy);

final JCheckBox chckbxAddAttachmentNames = new JCheckBox("Add Attachment Names");
chckbxAddAttachmentNames.setBackground(Color.WHITE);
chckbxAddAttachmentNames.setBounds(10, 69, 180, 23);
panel.add(chckbxAddAttachmentNames);

final JCheckBox chckbxExtractAttachments = new JCheckBox("Extract Attachments");
chckbxExtractAttachments.setBackground(Color.WHITE);
chckbxExtractAttachments.setBounds(10, 69, 180, 23);
chckbxExtractAttachments.setBounds(10, 69, 150, 23);
panel.add(chckbxExtractAttachments);

final JCheckBox chckbxAddAttachmentNames = new JCheckBox("Add Attachment Names");
chckbxAddAttachmentNames.setBackground(Color.WHITE);
chckbxAddAttachmentNames.setBounds(160, 69, 180, 23);
panel.add(chckbxAddAttachmentNames);

JPanel panelProgress = new JPanel();
panelProgress.setBorder(new TitledBorder(null, "", TitledBorder.LEADING, TitledBorder.TOP, null, null));
panelProgress.setBackground(Color.WHITE);
Expand Down

0 comments on commit a1221a6

Please sign in to comment.