mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
2413 - Fixed wrapping of descript text on filesSet creation
This commit is contained in:
parent
0736e64a62
commit
a34f88752e
@ -108,7 +108,9 @@
|
||||
<Component class="javax.swing.JTextArea" name="descTextArea">
|
||||
<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>
|
||||
|
@ -172,7 +172,9 @@ public class FilesSetPanel extends javax.swing.JPanel {
|
||||
descPanel.setBorder(javax.swing.BorderFactory.createTitledBorder(org.openide.util.NbBundle.getMessage(FilesSetPanel.class, "FilesSetPanel.descPanel.border.title"))); // NOI18N
|
||||
|
||||
descTextArea.setColumns(20);
|
||||
descTextArea.setLineWrap(true);
|
||||
descTextArea.setRows(5);
|
||||
descTextArea.setWrapStyleWord(true);
|
||||
descScrollPanel.setViewportView(descTextArea);
|
||||
|
||||
javax.swing.GroupLayout descPanelLayout = new javax.swing.GroupLayout(descPanel);
|
||||
|
Loading…
x
Reference in New Issue
Block a user