summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
diff options
context:
space:
mode:
authorAnatoly Spektor <aspektor@redhat.com>2012-10-17 13:50:06 -0400
committerAlexander Kurtakov <akurtako@redhat.com>2012-10-17 21:51:35 +0300
commit35f130070627930dae79842022c951694c5a3dfa (patch)
tree2dbb544349562d0c5e42d0e19dd7deaece497962 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
parented640c3e8cb9e6f5b49b8c43cbe44d558e655cc7 (diff)
downloadeclipse.platform.swt-35f130070627930dae79842022c951694c5a3dfa.tar.gz
eclipse.platform.swt-35f130070627930dae79842022c951694c5a3dfa.tar.xz
eclipse.platform.swt-35f130070627930dae79842022c951694c5a3dfa.zip
Use gtk_widget_get_preferred_size() instead gtk_widget_size_request ()
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
index c75b7d6046..5ecf918e10 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
@@ -475,7 +475,7 @@ int setBounds (int x, int y, int width, int height, boolean move, boolean resize
* layout, but it does not. The fix is to resize the label directly.
*/
GtkRequisition requisition = new GtkRequisition ();
- OS.gtk_widget_size_request (labelHandle, requisition);
+ gtk_widget_get_preferred_size (labelHandle, requisition);
gtk_widget_get_allocation(labelHandle, allocation);
allocation.width = labelWidth;
allocation.height = labelHeight;