Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0
-
None
-
None
-
Windows XP Professional sp2 JVM: 1.4.2_10-b03
-
Patch
Description
In the attached example button 'B' is not visible.
Regards
Frank
-------
import groovy.swing.SwingBuilder
swing = new SwingBuilder()
frame = swing.frame() {
panel {
tableLayout {
tr {
td
td
{button 'B'}td
{button 'C'} }
}
}
}
frame.pack()
frame.show()