Revision 2063

View differences:

org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.dynform/org.gvsig.tools.dynform.impl/src/main/java/org/gvsig/tools/dynform/impl/DefaultJDynForm.java
204 204
            gridy++;
205 205

  
206 206
        }
207
        // Con esto forzamos a alinear los componentes arriba.
208
        c.gridx = 0;
209
        c.gridy = gridy;
210
        c.gridwidth = 1;
211
        c.gridheight = 1;
212
        c.fill = GridBagConstraints.VERTICAL;
213
        c.weightx = 0;
214
        c.weighty = 0.001;
215
        fieldsPanel.add(new JLabel(), c);
207 216
        return fieldsPanel;
208 217
    }
209 218

  
......
310 319
                gridy++;
311 320
            }
312 321
        }
322
        // Con esto forzamos a alinear los componentes arriba.
323
        c.gridx = 0;
324
        c.gridy = gridy;
325
        c.gridwidth = 1;
326
        c.gridheight = 1;
327
        c.fill = GridBagConstraints.VERTICAL;
328
        c.weightx = 0;
329
        c.weighty = 0.001;
330
        fieldsPanel.add(new JLabel(), c);
313 331
        return fieldsPanel;
314 332
    }
315 333

  

Also available in: Unified diff