1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 20:35:38 +02:00

Give the launchbar 3 more pixels of margin.

It was feeling a bit cramped.
This commit is contained in:
Doug Schaefer 2014-07-04 16:37:46 -04:00
parent 42f137042f
commit e5f667c97e

View file

@ -50,6 +50,8 @@ public class LaunchBarControl implements ILaunchBarManager.Listener {
Composite container = new Composite(parent, SWT.NONE);
container.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false));
GridLayout layout = new GridLayout(7, false);
layout.marginHeight = 8;
layout.marginWidth = 8;
container.setLayout(layout);
container.addDisposeListener(new DisposeListener() {
@Override