[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] ContributionItem alignment in StatsuLine

Hi,

I have a ContributionItem used to add a composite to the statusline. Everything works fine except that the widgets are aligned to the right! How can I manage the alignment?

thanks
--javier

<code>
	@Override
	public void fill(final Composite _parent) {
		Composite combo=new Composite (_parent,SWT.NONE);
		
		StatusLineLayoutData data=new StatusLineLayoutData();
		data.widthHint=combo.getSize().x;
		data.heightHint=combo.getSize().y;
		
		combo.setLayoutData(data);
	}

</code>