From 977c62c7089a4727b6bdd884473802f6386d20df Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 31 Oct 2023 16:14:28 +0500 Subject: [PATCH] Docs: remove dpi from blf.size doc as it's deprecated DPI argument of blf.size is deprecated, remove it from docs. Ref !114319. --- source/blender/python/generic/blf_py_api.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/generic/blf_py_api.cc b/source/blender/python/generic/blf_py_api.cc index 48657aecf33..7df20ac0725 100644 --- a/source/blender/python/generic/blf_py_api.cc +++ b/source/blender/python/generic/blf_py_api.cc @@ -53,7 +53,7 @@ static PyObject *py_blf_position(PyObject * /*self*/, PyObject *args) } PyDoc_STRVAR(py_blf_size_doc, - ".. function:: size(fontid, size, dpi=72)\n" + ".. function:: size(fontid, size)\n" "\n" " Set the size for drawing text.\n" "\n"