Skip to content

Commit

Permalink
removed extra JScrollPane around comments text editor which prevented…
Browse files Browse the repository at this point in the history
… scrolling for instrument comments [fixes #523]
  • Loading branch information
kunstmusik committed Jul 30, 2020
1 parent 72b8627 commit 4d7b00c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ FIX
* Audio Layers: Audio Clips were not generating use project-relative paths when
audio files were children of project root folder

* Issue #523: Comments tab for instruments did not scroll correctly


> Notes for 2.8.0 <
[release 2020.06.03]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ public InstrumentEditPanel() {
JTabbedPane tabs = new JTabbedPane();

tabs.add("Instrument Editor", editPanel);
tabs.add("Comments", new JScrollPane(commentPane));

// commentPane.getJEditorPane().setWrapStyleWord(true);
// commentPane.setLineWrap(true);
tabs.add("Comments", commentPane);

editPanel.setLayout(cardLayout);

Expand Down

0 comments on commit 4d7b00c

Please sign in to comment.