| [news.eclipse.platform.swt] Re: Combos in menu |
Its not a big issue for now, Thanks. -Mark
Hey Mark,
In order to change the length of the widget, just modify the default method
computeWidth in the AddressEntry. Its length at default is 350.
protected int computeWidth(Control control) {
System.out.println(control.getLayoutData());
return control.computeSize(350, SWT.DEFAULT, true).x;
}