Skip to content

Commit

Permalink
added line wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 27, 2024
1 parent 7dd5129 commit f42161e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,9 @@
<Component class="javax.swing.JTextArea" name="taEventDescription">
<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 @@ -893,7 +893,9 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
jLabel6.setText("Ort:");

taEventDescription.setColumns(20);
taEventDescription.setLineWrap(true);
taEventDescription.setRows(5);
taEventDescription.setWrapStyleWord(true);
jScrollPane2.setViewportView(taEventDescription);

cmbEventBeginTime.setEditable(true);
Expand Down

0 comments on commit f42161e

Please sign in to comment.