mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Property tabs without buttons, bug 242408.
This commit is contained in:
parent
d8aad9f2f0
commit
428b7bd010
1 changed files with 3 additions and 1 deletions
|
@ -156,7 +156,9 @@ public abstract class AbstractCPropertyTab implements ICPropertyTab {
|
|||
|
||||
buttoncomp = new Composite(userdata, SWT.NONE);
|
||||
buttoncomp.setLayoutData(gd= new GridData(GridData.END));
|
||||
gd.widthHint= 150;
|
||||
// width hint must be set to one, otherwise subclasses that do not have buttons
|
||||
// don't look pretty, bug 242408
|
||||
gd.widthHint= 1;
|
||||
|
||||
pageBook.showPage(userdata);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue