Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Commit

Permalink
The text areas in the "Detailed Transfer Status for [form]" Dialog an…
Browse files Browse the repository at this point in the history
…d the "Export Details for [form]" Dialog are now set to editable false. Fix #26.
  • Loading branch information
carstendev committed Dec 16, 2016
1 parent a3c51c3 commit 9e1c9f4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ private ScrollingStatusListDialog(Frame frame, String labelText, String title, S
getRootPane().setDefaultButton(cancelButton);

JEditorPane editorArea = new JEditorPane("text/plain", statusHtml);
editorArea.setEditable(false);
//Put the editor pane in a scroll pane.
JScrollPane editorScrollPane = new JScrollPane(editorArea);
editorScrollPane.setVerticalScrollBarPolicy(
Expand Down

0 comments on commit 9e1c9f4

Please sign in to comment.