View Single Post
Old 12-01-2017, 07:26 AM   #41
Bobflip
Human being with feelings
 
Join Date: Nov 2016
Posts: 341
Default

Ok, found a sneaky workaround. If the handle can't be made invisible right now, make it small enough that it's hard to click, lol.

Code:
AttachGUIResize(new IPlugGUIResize(this, pGraphics, false, 0, 0));
And stretched out into the full thing, I have this:

Code:
#ifdef __APPLE__
      #ifdef VST_API
            AttachGUIResize(new IPlugGUIResize(this, pGraphics, false, 0, 0));
      #else
            AttachGUIResize(new IPlugGUIResize(this, pGraphics, true, 16, 16));
      #endif
#else
      AttachGUIResize(new IPlugGUIResize(this, pGraphics, true, 16, 16));
#endif
Bobflip is offline   Reply With Quote