From: Eric S. Raymond Date: Wed, 13 Sep 2006 17:29:04 +0000 (+0000) Subject: Widgets now stack vertically. X-Git-Tag: 2.0~286 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=29ad72468c182d54cca779529a2ea5ab288ef8ba Widgets now stack vertically. --- diff --git a/xio.c b/xio.c index e78e514..ea13d05 100644 --- a/xio.c +++ b/xio.c @@ -24,7 +24,7 @@ int main (int argc, char **argv) quit = XtVaCreateManagedWidget ("quit", commandWidgetClass, form, XtNlabel, "Quit", NULL); text = XtVaCreateManagedWidget ("text", asciiTextWidgetClass, form, - XtNfromHoriz, quit, XtNresize, + XtNfromVert, quit, XtNresize, XawtextResizeBoth, XtNresizable, True, NULL); XtAddCallback (quit, XtNcallback, quit_proc, NULL); if (argc <= 1)