This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 182950
Collapse All | Expand All

(-)bugzilla/src/org/netbeans/modules/bugzilla/query/QueryPanel.form (-1 / +1 lines)
Lines 1746-1753 Link Here
1746
                  <Group type="103" groupAlignment="3" attributes="0">
1746
                  <Group type="103" groupAlignment="3" attributes="0">
1747
                      <Component id="gotoIssueButton" alignment="3" min="-2" max="-2" attributes="0"/>
1747
                      <Component id="gotoIssueButton" alignment="3" min="-2" max="-2" attributes="0"/>
1748
                      <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
1748
                      <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
1749
                      <Component id="idTextField" alignment="3" min="-2" max="-2" attributes="0"/>
1749
                  </Group>
1750
                  </Group>
1750
                  <Component id="idTextField" alignment="0" min="-2" max="-2" attributes="0"/>
1751
              </Group>
1751
              </Group>
1752
            </DimensionLayout>
1752
            </DimensionLayout>
1753
          </Layout>
1753
          </Layout>
(-)bugzilla/src/org/netbeans/modules/bugzilla/query/QueryPanel.java (-3 / +3 lines)
Lines 925-938 Link Here
925
                .add(idTextField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
925
                .add(idTextField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
926
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
926
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
927
                .add(gotoIssueButton)
927
                .add(gotoIssueButton)
928
                .addContainerGap(597, Short.MAX_VALUE))
928
            .addContainerGap(597, Short.MAX_VALUE))
929
        );
929
        );
930
        gotoPanelLayout.setVerticalGroup(
930
        gotoPanelLayout.setVerticalGroup(
931
            gotoPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
931
            gotoPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
932
            .add(gotoPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
932
            .add(gotoPanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
933
                .add(gotoIssueButton)
933
                .add(gotoIssueButton)
934
                .add(jLabel1))
934
            .add(jLabel1)
935
            .add(idTextField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
935
            .add(idTextField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
936
        );
936
        );
937
937
938
        idTextField.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(QueryPanel.class, "QueryPanel.idTextField.AccessibleContext.accessibleDescription")); // NOI18N
938
        idTextField.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(QueryPanel.class, "QueryPanel.idTextField.AccessibleContext.accessibleDescription")); // NOI18N

Return to bug 182950