Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0
-
Fix Version/s: 1.1-beta-2
-
Component/s: None
-
Labels:None
-
Environment:Windows XP Professional sp2 JVM: 1.4.2_10-b03
-
Number of attachments :
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 {button 'A'}
td {button 'B'}
td {button 'C'}
}
}
}
}
frame.pack()
frame.show()
The attached patch seems to solve the problem.
Thanks to my colleague Alexej Stojanov. We fixed the issue together.
Regards
Frank