Hi,
when a label gets its initial width size then the full label is shown.
But when the client zooms out the webpage it can happen that some parts are missing.
Especially when there are word breaking characters ex.'-' or spaces in the label.
If i change the width of the div where the label is in with developer tools in chrome it's shown.
snippet to illustrate this.
public class LabelDrawing extends AbstractEntryPoint {
@Override
protected void createContents(Composite parent) {
Composite composite = new Composite(parent, SWT.CENTER);
GridLayout layout = new GridLayout(2, false);
layout.numColumns = 2;
composite.setLayout(layout);
Label title = new Label(composite, SWT.CENTER);
title.setText("Label test 2");
}
}
Is this something that can be fixed?
I found the following bug that might be related.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=371360
found the actual bug
https://bugs.eclipse.org/bugs/show_bug.cgi?id=351218
Kind regards,
Wim
[Updated on: Thu, 05 September 2013 06:45] by Moderator