summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java18
1 files changed, 15 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java
index 4d300b999b..18406864af 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java
@@ -106,10 +106,22 @@ public void addSelectionListener (SelectionListener listener) {
public Point computeSize (int wHint, int hHint, boolean changed) {
checkWidget ();
+ if (wHint != SWT.DEFAULT && wHint < 0) wHint = 0;
+ if (hHint != SWT.DEFAULT && hHint < 0) hHint = 0;
+ int width, height;
int layoutWidth = layout.getWidth ();
- layout.setWidth (wHint);
- Rectangle rect = layout.getBounds ();
- int width = rect.width, height = rect.height;
+ //TEMPORARY CODE
+ if (wHint == 0) {
+ layout.setWidth (1);
+ Rectangle rect = layout.getBounds ();
+ width = 0;
+ height = rect.height;
+ } else {
+ layout.setWidth (wHint);
+ Rectangle rect = layout.getBounds ();
+ width = rect.width;
+ height = rect.height;
+ }
layout.setWidth (layoutWidth);
if (wHint != SWT.DEFAULT) width = wHint;
if (hHint != SWT.DEFAULT) height = hHint;