Skip to content

Commit

Permalink
add linewrap to transcription outpout. close #2621
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 23, 2024
1 parent e01e1d2 commit 7e1ae3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@
<Component class="javax.swing.JTextArea" name="taTranscription">
<Properties>
<Property name="columns" type="int" value="20"/>
<Property name="lineWrap" type="boolean" value="true"/>
<Property name="rows" type="int" value="5"/>
<Property name="wrapStyleWord" type="boolean" value="true"/>
</Properties>
</Component>
</SubComponents>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,6 @@
import javax.swing.Timer;
import java.awt.event.ActionEvent;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import javax.sound.sampled.LineEvent;
Expand Down Expand Up @@ -788,7 +787,9 @@ public void mouseReleased(java.awt.event.MouseEvent evt) {
});

taTranscription.setColumns(20);
taTranscription.setLineWrap(true);
taTranscription.setRows(5);
taTranscription.setWrapStyleWord(true);
jScrollPane1.setViewportView(taTranscription);

cmdNewDocument.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/edit.png"))); // NOI18N
Expand Down

0 comments on commit 7e1ae3b

Please sign in to comment.