Skip to content

Commit

Permalink
update author dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Moinat committed Apr 9, 2021
1 parent 1ec713d commit ee43567
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/ohdsi/usagi/ui/AuthorDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class AuthorDialog extends JDialog {
private String authorFileName;

public AuthorDialog() {
setTitle("Author");
setTitle("Usagi v" + UsagiMain.version);
setLayout(new GridBagLayout());
GridBagConstraints g = new GridBagConstraints();
g.fill = GridBagConstraints.BOTH;
Expand All @@ -35,7 +35,7 @@ public AuthorDialog() {

g.gridx = 0;
g.gridy = 0;
add(new JLabel("Author:"), g);
add(new JLabel(" Author:"), g);

g.gridx = 1;
g.gridy = 0;
Expand All @@ -51,7 +51,7 @@ public AuthorDialog() {
add(saveBox, g);

g.gridx = 0;
g.gridy = 3;
g.gridy = 2;
g.gridwidth = 2;
JPanel buttonPanel = new JPanel();
buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS));
Expand Down

0 comments on commit ee43567

Please sign in to comment.