1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Label should nor wrap by default. Otherwise multi-word labels may be shown only partially.

This commit is contained in:
Sergey Prigogin 2008-07-20 00:18:29 +00:00
parent 59915ca750
commit 2c26884385

View file

@ -127,7 +127,7 @@ public class DialogField {
if (fLabel == null) {
assertCompositeNotNull(parent);
fLabel= new Label(parent, SWT.LEFT | SWT.WRAP);
fLabel= new Label(parent, SWT.LEFT);
fLabel.setFont(parent.getFont());
fLabel.setEnabled(fEnabled);
if (fLabelText != null && !"".equals(fLabelText)) { //$NON-NLS-1$