From ac15ce71387d3fdac3cf219a0ef50b306c3491d1 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 13 Mar 2001 16:51:13 +0000 Subject: [PATCH] (make_menu_in_widget): Remove code forcing LessTif to recompute centered text; it works fine without with current LessTif. --- lwlib/lwlib-Xm.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c index 340c8fda784..9c8fbe50949 100644 --- a/lwlib/lwlib-Xm.c +++ b/lwlib/lwlib-Xm.c @@ -493,7 +493,8 @@ make_menu_in_widget (instance, widget, val, keep_first_children) old_children = XtCompositeChildren (widget, &old_num_children); /* Allocate the children array */ - for (num_children = 0, cur = val; cur; num_children++, cur = cur->next); + for (num_children = 0, cur = val; cur; num_children++, cur = cur->next) + ; children = (Widget*)XtMalloc (num_children * sizeof (Widget)); /* WIDGET should be a RowColumn. */ @@ -610,12 +611,6 @@ make_menu_in_widget (instance, widget, val, keep_first_children) if (button) XtVaSetValues (widget, XmNmenuHelpWidget, button, NULL); - /* LessTif apparently doesn't recompute centered text when more - widgets are added. So, do it after all widgets have been - created. */ - if (title) - XtVaSetValues (title, XmNalignment, XmALIGNMENT_CENTER, NULL); - if (num_children) XtManageChildren (children, num_children); @@ -1906,7 +1901,6 @@ xm_pop_down_callback (widget, closure, call_data) XtPointer call_data; { widget_instance *instance = (widget_instance *) closure; - fprintf (stderr, "%p\n", call_data); if ((!instance->pop_up_p && XtParent (widget) == instance->widget) || XtParent (widget) == instance->parent) -- 2.11.4.GIT