[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] TableColumn bug?

Hi,

I have this little snippet...

for (int i = 0; i < weekdays.length; i++) {

column = new TableColumn(tbv.getTable(), SWT.CENTER);

column.setText( weekdays[i] );

column.setAlignment(SWT.CENTER);

column.setResizable(false);

}



Now, the first column is never CENTER-aligned... it's always LEFT... why is
that? Is there something I'm missing, or is this a bug?

Thank you,

-jp