]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
fixed root text for snack
authorewt <ewt>
Tue, 28 Oct 1997 01:46:04 +0000 (01:46 +0000)
committerewt <ewt>
Tue, 28 Oct 1997 01:46:04 +0000 (01:46 +0000)
snackmodule.c

index fd9aab265cf4287df038a2765bbbe5880fbdaf04..da321068e31bb256eab130873442cc60f205bb6a 100644 (file)
@@ -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;