You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for ( int i = 0, row = 0; i < colors.length; i++, row++ ) {
for ( int y = 0; y < 7 && i < colors.length; y++, i++ ) {
table.setWidget( row, y, new ColorBox( this, colors[i] ) );
}
}
variable i is incremented twice and this causes that some colors are missing. For example white
The text was updated successfully, but these errors were encountered:
There is error in ColorPicker code:
variable i is incremented twice and this causes that some colors are missing. For example white
The text was updated successfully, but these errors were encountered: