Skip to content

Commit

Permalink
added line wrap, word-style. close #2577
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Sep 24, 2024
1 parent 9a8e400 commit f19baaf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Binary file modified j-lawyer-client/lib/j-lawyer-cloud/j-lawyer-cloud.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
<Component class="javax.swing.JTextArea" name="taText">
<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>
<Events>
<EventHandler event="mouseReleased" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="taTextMouseReleased"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,9 @@ private void initComponents() {
setTitle("Textauswahl kopieren");

taText.setColumns(20);
taText.setLineWrap(true);
taText.setRows(5);
taText.setWrapStyleWord(true);
taText.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseReleased(java.awt.event.MouseEvent evt) {
taTextMouseReleased(evt);
Expand Down
Binary file modified j-lawyer-client/src/icons16/material/j-lawyer-ai-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f19baaf

Please sign in to comment.