GilesSmith
New Member
- Joined
- Jun 2, 2012
- Messages
- 1,564
- Reaction score
- 34
If you have a plugin with a config window, and click on it once in the plugin-tab within DemonBuddy but don't open the config window... and then quit DemonBuddy, DemonBuddy process stays running and attached to Diablo 3 and needs task-killing.
If you open the config window, and then close it, you can prevent this by doing something like
However if the window doesn't actually get opened, then it can't get closed, and so you can't clear the config window to prevent the process-stuck situation.
Note that this only happens if you select the plugin in the plugin list (so the config window becomes ungreyed in DemonBuddy) but DON'T actually open the config window, and then just quit DemonBuddy.
Help?
If you open the config window, and then close it, you can prevent this by doing something like
Code:
configWindow.Closed += configWindow_Closed;
private void configWindow_Closed(object sender, EventArgs e)
{
configWindow = null;
}
However if the window doesn't actually get opened, then it can't get closed, and so you can't clear the config window to prevent the process-stuck situation.
Note that this only happens if you select the plugin in the plugin list (so the config window becomes ungreyed in DemonBuddy) but DON'T actually open the config window, and then just quit DemonBuddy.
Help?
