There's a bug with the tooltips on the VST PC audio plugins. RTAS PC plugins and Mac plugins don't crash.
Printing tooltips on screen makes my VST plugin crash at the DAW closing (Reaper, Cubase, Live).
I've done a quick test by simply adding a tooltip to a slider of the demo plugin and the crash also happens.
PluginEditor.h:
- Code: Select all
ScopedPointer<TooltipWindow> tooltipWindow;
PluginEditor.cpp: in the constructor
- Code: Select all
tooltipWindow = new TooltipWindow(this, 0);
...
gainSlider.setTooltip("Hello");
Other info:
- DirectWrite is not activated.
- The bug occurs since I've been using the new "modules" library. Plugins built with juce version prior to 1.54.27 work fine.
- Juce version: 2.0.21
- same problem on 32 and 64-bit plugins
Any ideas how to fix it?
Thanks
