diff src/audacious/ui_preferences.c @ 4266:2b7a74fce100

Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
author stefano@zanga
date Sun, 10 Feb 2008 12:31:44 +0100
parents b0ca963fd965
children a3d30a174720
line wrap: on
line diff
--- a/src/audacious/ui_preferences.c	Sun Feb 10 10:40:51 2008 +0100
+++ b/src/audacious/ui_preferences.c	Sun Feb 10 12:31:44 2008 +0100
@@ -751,6 +751,7 @@
     g_return_if_fail(plugin != NULL);
     g_return_if_fail(plugin->configure != NULL);
 
+    plugin_set_current(plugin);
     plugin->configure();
 }
 
@@ -769,6 +770,7 @@
 
     g_return_if_fail(plugin != NULL);
 
+    plugin_set_current(plugin);
     plugin->about();
 }