DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit df2afed246113e4459808b112583d54cf7e433e9
parent dc059ef8adfb7af49318cf1bb52cffcf47072450
Author: falkTX <falktx@falktx.com>
Date:   Tue, 24 Oct 2023 20:46:58 +0200

Fix custom class name

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdgl/src/ApplicationPrivateData.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dgl/src/ApplicationPrivateData.cpp b/dgl/src/ApplicationPrivateData.cpp @@ -168,7 +168,7 @@ void Application::PrivateData::setClassName(const char* const name) DISTRHO_SAFE_ASSERT_RETURN(name != nullptr && name[0] != '\0',); if (world != nullptr) - puglSetWorldString(world, PUGL_CLASS_NAME, "canvas"); + puglSetWorldString(world, PUGL_CLASS_NAME, name); } // --------------------------------------------------------------------------------------------------------------------