I have a resizable window with a native titlebar and i want to paint the bottom right resize handle myself but setting the useBottomRightCornerResizer to false in the setResizable function does not remove it on the mac. It is showing a standard osx handle. Is this a bug or is there another method to disable the built in resize handler?
setUsingNativeTitleBar(true);
setResizable (true, false); //setting useBottomRightCornerResizer to false does not work on the mac when using a native titlebar
[/code]
Well no, it’s not a bug - on the mac the only kind of native resizable border is the one with the corner resizer, so that’s what you’re getting when you set the window to be resizable.
If you want a custom resizer the only way to get rid of the OSX one is to make the window non-resizable. Then you could add a juce one.
I’m trying to set the native OSX resize handle to transparent in my HIViews but I don’t know where to implant the following carbon method so that it works…