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 123424
Collapse All | Expand All

(-)versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/wizards/CloneRepositoryPanel.form (-2 / +2 lines)
Lines 14-27 Link Here
14
  <Layout>
14
  <Layout>
15
    <DimensionLayout dim="0">
15
    <DimensionLayout dim="0">
16
      <Group type="103" groupAlignment="0" attributes="0">
16
      <Group type="103" groupAlignment="0" attributes="0">
17
          <Component id="repositoryPanel" alignment="0" min="-2" max="-2" attributes="0"/>
17
          <Component id="repositoryPanel" alignment="0" max="32767" attributes="0"/>
18
          <Component id="progressPanel" alignment="0" max="32767" attributes="0"/>
18
          <Component id="progressPanel" alignment="0" max="32767" attributes="0"/>
19
      </Group>
19
      </Group>
20
    </DimensionLayout>
20
    </DimensionLayout>
21
    <DimensionLayout dim="1">
21
    <DimensionLayout dim="1">
22
      <Group type="103" groupAlignment="0" attributes="0">
22
      <Group type="103" groupAlignment="0" attributes="0">
23
          <Group type="102" alignment="0" attributes="0">
23
          <Group type="102" alignment="0" attributes="0">
24
              <Component id="repositoryPanel" min="-2" max="-2" attributes="0"/>
24
              <Component id="repositoryPanel" max="32767" attributes="0"/>
25
              <EmptySpace max="-2" attributes="0"/>
25
              <EmptySpace max="-2" attributes="0"/>
26
              <Component id="progressPanel" max="32767" attributes="0"/>
26
              <Component id="progressPanel" max="32767" attributes="0"/>
27
          </Group>
27
          </Group>
(-)versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/wizards/CloneRepositoryPanel.java (-2 / +2 lines)
Lines 92-104 Link Here
92
        this.setLayout(layout);
92
        this.setLayout(layout);
93
        layout.setHorizontalGroup(
93
        layout.setHorizontalGroup(
94
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
94
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
95
            .add(repositoryPanel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
95
            .add(repositoryPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
96
            .add(progressPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
96
            .add(progressPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
97
        );
97
        );
98
        layout.setVerticalGroup(
98
        layout.setVerticalGroup(
99
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
99
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
100
            .add(layout.createSequentialGroup()
100
            .add(layout.createSequentialGroup()
101
                .add(repositoryPanel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
101
                .add(repositoryPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
102
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
102
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
103
                .add(progressPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
103
                .add(progressPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
104
        );
104
        );

Return to bug 123424