From: ewt Date: Tue, 28 Oct 1997 01:46:04 +0000 (+0000) Subject: fixed root text for snack X-Git-Tag: r0-20~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec65dcfe6bcb28fa599b891ba6621934bfa4998e;p=thirdparty%2Fnewt.git fixed root text for snack --- diff --git a/snackmodule.c b/snackmodule.c index fd9aab2..da32106 100644 --- a/snackmodule.c +++ b/snackmodule.c @@ -200,7 +200,7 @@ static PyObject * drawRootText(PyObject * s, PyObject * args) { if (!PyArg_ParseTuple(args, "iis", &left, &top, &text)) return NULL; - newtDrawRootText(left, top, NULL); + newtDrawRootText(left, top, text); Py_INCREF(Py_None); return Py_None;