How to change shape of popup background?
-
I need to create rounded popup background.
So far, I've only found this solution:
Code:
// Draw popup bg. cmbResizeLaf.registerFunction("drawPopupMenuBackground", function(g, obj) { // Draw bg. g.fillAll(Colours.black); g.setColour(0xCECECECE); g.fillRoundedRectangle([0, 0, obj.width, obj.height], 5); });
-
@It_Used This has been an issue for a while, the background of the popup menu is solid, so unless you can make it the same colour as your plugin's background, you will always see the corners.
-
@d-healey This is very bad for me :(
But thanks for the reply anyway️!