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:
parent
59915ca750
commit
2c26884385
1 changed files with 1 additions and 1 deletions
|
@ -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$
|
||||
|
|
Loading…
Add table
Reference in a new issue