From eee7bf002bf3ceccc3d7c331a4131ad007c4d1ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 18 Oct 2023 21:27:34 +0200 Subject: [PATCH] python: adapt to Text::AbstractGlyphCache changes. --- src/python/magnum/text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/magnum/text.cpp b/src/python/magnum/text.cpp index da15ee4..bed14f0 100644 --- a/src/python/magnum/text.cpp +++ b/src/python/magnum/text.cpp @@ -90,7 +90,7 @@ void text(py::module_& m) { py::class_ abstractGlyphCache{m, "AbstractGlyphCache", "Base for glyph caches"}; abstractGlyphCache /** @todo features */ - .def_property_readonly("texture_size", &Text::AbstractGlyphCache::textureSize, "Glyph cache texture size") + .def_property_readonly("texture_size", &Text::AbstractGlyphCache::size, "Glyph cache texture size") .def_property_readonly("padding", &Text::AbstractGlyphCache::padding, "Glyph padding") /** @todo glyph iteration and population */ ;