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

Windows limitation.  See https://bugs.eclipse.org/bugs/show_bug.cgi?id=22473

<jpan@xxxxxxxxxxxx> wrote in message news:b9uc0r$sjh$1@xxxxxxxxxxxxxxxx
> 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
>
>
>