launcher: fix plugin config tooltips

This commit is contained in:
somewhatlurker
2019-08-30 00:16:35 +10:00
parent b70fd18dd3
commit 6b9921d95d
@@ -1085,7 +1085,8 @@ public:
if (_configopts.size() > 0)
{
Panel^ configPanel = MakePanel((Col2Left + Col2Width + 64), 250, _configopts, tooltip, hasChanged);
ToolTip^ paneltooltip = gcnew ToolTip();
Panel^ configPanel = MakePanel((Col2Left + Col2Width + 64), 250, _configopts, paneltooltip, hasChanged);
configPanel->Scale(ScaleWidth, ScaleHeight);
PluginConfigHandler^ confighandler = gcnew PluginConfigHandler(configPanel, gcnew String(_friendlyName) + " Options");
button->Click += gcnew System::EventHandler(confighandler, &PluginConfigHandler::OpenForm);