From 29ad72468c182d54cca779529a2ea5ab288ef8ba Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 13 Sep 2006 17:29:04 +0000 Subject: [PATCH] Widgets now stack vertically. --- xio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.31.1