Skip to content

Commit

Permalink
Merge pull request #90 from marc-outins/issue_28_add_notes_to_tables
Browse files Browse the repository at this point in the history
Uncommented table comment code
  • Loading branch information
schuemie committed Jun 18, 2015
2 parents c309fa5 + e4d22a9 commit 28dc2a7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/org/ohdsi/rabbitInAHat/DetailsPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,15 @@ public void columnSelectionChanged(ListSelectionEvent e) {
fieldListPanel.setBorder(BorderFactory.createTitledBorder("Fields"));
add(fieldListPanel, BorderLayout.CENTER);

// JScrollPane commentsPanel = new JScrollPane(commentsArea);
// commentsArea.setFont(font);
// commentsArea.getDocument().addDocumentListener(this);
// commentsArea.setWrapStyleWord(true);
// commentsArea.setLineWrap(true);
//
// commentsPanel.setBorder(BorderFactory.createTitledBorder("Comments"));
// commentsPanel.setPreferredSize(new Dimension(100, 200));
// add(commentsPanel, BorderLayout.SOUTH);
JScrollPane commentsPanel = new JScrollPane(commentsArea);
commentsArea.setFont(font);
commentsArea.getDocument().addDocumentListener(this);
commentsArea.setWrapStyleWord(true);
commentsArea.setLineWrap(true);

commentsPanel.setBorder(BorderFactory.createTitledBorder("Comments"));
commentsPanel.setPreferredSize(new Dimension(100, 200));
add(commentsPanel, BorderLayout.SOUTH);

}

Expand Down

0 comments on commit 28dc2a7

Please sign in to comment.