Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ object CsvValidatorUi extends SimpleSwingApplication {
}

private val txtArReport = new TextArea()
txtArReport.lineWrap = true

/**
* The main UI of the application
Expand Down Expand Up @@ -366,7 +367,7 @@ object CsvValidatorUi extends SimpleSwingApplication {

private val scrollPane = new ScrollPane
txtArReport.peer.setTransferHandler(fileHandler)
scrollPane.preferredSize = new Dimension(300, 70)
scrollPane.preferredSize = new Dimension(300, 70) // for some reason, line wrap only works if this is here so this will have to stay
scrollPane.viewportView = txtArReport

private val btnValidate = new Button("Validate")
Expand Down
Loading