Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
index 7591b74907..d894c84d21 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
@@ -216,7 +216,7 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
int imageWidth = 0, imageHeight = 0;
if (gtk_widget_get_visible (imageHandle)) {
GtkRequisition requisition = new GtkRequisition ();
- OS.gtk_widget_size_request (imageHandle, requisition);
+ gtk_widget_get_preferred_size (imageHandle, requisition);
imageWidth = requisition.width;
imageHeight = requisition.height;
int [] spacing = new int [1];
@@ -765,7 +765,7 @@ int setBounds (int x, int y, int width, int height, boolean move, boolean resize
int imageWidth = 0;
if (gtk_widget_get_visible (imageHandle)) {
GtkRequisition requisition = new GtkRequisition ();
- OS.gtk_widget_size_request (imageHandle, requisition);
+ gtk_widget_get_preferred_size (imageHandle, requisition);
imageWidth = requisition.width;
int [] spacing = new int [1];
OS.g_object_get (boxHandle, OS.spacing, spacing, 0);
@@ -777,7 +777,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 (boxHandle, requisition);
+ gtk_widget_get_preferred_size (boxHandle, requisition);
allocation.width = boxWidth;
allocation.height = boxHeight;
OS.gtk_widget_size_allocate (boxHandle, allocation);

Back to the top