Skip to content

Commit

Permalink
java BoxLayout panel's alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfBarkow committed Oct 25, 2024
1 parent 9d25d37 commit 3e739cb
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 @@ -834,6 +834,7 @@
<Border info="null"/>
</Property>
<Property name="contentType" type="java.lang.String" resourceKey="jEditorPaneSearchEntry.contentType"/>
<Property name="alignmentX" type="float" value="0.75"/>
<Property name="name" type="java.lang.String" value="jEditorPaneSearchEntry" noResource="true"/>
</Properties>
</Component>
Expand Down Expand Up @@ -886,6 +887,7 @@
<Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
<Connection code="keywordListModel" type="code"/>
</Property>
<Property name="alignmentX" type="float" value="0.75"/>
<Property name="name" type="java.lang.String" value="jListKeywords" noResource="true"/>
</Properties>
<AuxValues>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2563,6 +2563,7 @@ public boolean isCellEditable(int rowIndex, int columnIndex) {
jEditorPaneSearchEntry.setEditable(false);
jEditorPaneSearchEntry.setBorder(null);
jEditorPaneSearchEntry.setContentType(resourceMap.getString("jEditorPaneSearchEntry.contentType")); // NOI18N
jEditorPaneSearchEntry.setAlignmentX(0.75F);
jEditorPaneSearchEntry.setName("jEditorPaneSearchEntry"); // NOI18N
jScrollPane2.setViewportView(jEditorPaneSearchEntry);

Expand All @@ -2584,7 +2585,7 @@ public boolean isCellEditable(int rowIndex, int columnIndex) {
jScrollPane4.setName("jScrollPane4"); // NOI18N

jListKeywords.setBorder(javax.swing.BorderFactory.createTitledBorder(resourceMap.getString("jListKeywords.border.title"))); // NOI18N
jListKeywords.setModel(data.getKeywordListModel());
jListKeywords.setAlignmentX(0.75F);
jListKeywords.setName("jListKeywords"); // NOI18N
jScrollPane4.setViewportView(jListKeywords);

Expand Down

0 comments on commit 3e739cb

Please sign in to comment.