From 88178fabd9b634e09e8a98431b3e53980a177cee Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 23 Aug 2025 17:33:11 +0200 Subject: [PATCH] [consider merging] Bugfix on Plugin registration This bug happened when a plugin package was installed. In this case, the plugin was installed dynamically. The effect was for example that the grid in a view became invisible. Problem was, that the plugin registration re-generated all plugins from the view, but did not reconfigure them. Hence the grid had the default setting which was invisible grid. --- src/laybasic/laybasic/layPlugin.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/laybasic/laybasic/layPlugin.cc b/src/laybasic/laybasic/layPlugin.cc index 0184e2f6b..f8c995c10 100644 --- a/src/laybasic/laybasic/layPlugin.cc +++ b/src/laybasic/laybasic/layPlugin.cc @@ -301,6 +301,7 @@ PluginDeclaration::register_plugin () if (Dispatcher::instance ()) { Dispatcher::instance ()->plugin_registered (this); initialize (Dispatcher::instance ()); + Dispatcher::instance ()->config_setup (); } }