summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
index 23b038f9dd..0e5131ac1c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
@@ -982,10 +982,9 @@ void resizeBounds (int width, int height, boolean notify) {
int menuHeight = 0;
if (menuBar != null) {
int /*long*/ menuHandle = menuBar.handle;
- OS.gtk_widget_set_size_request (menuHandle, -1, -1);
GtkRequisition requisition = new GtkRequisition ();
OS.gtk_widget_size_request (menuHandle, requisition);
- menuHeight = requisition.height;
+ menuHeight = OS.GTK_WIDGET_REQUISITION_HEIGHT (menuHandle);
OS.gtk_widget_set_size_request (menuHandle, width - (border * 2), menuHeight);
height = Math.max (1, height - menuHeight);
}