Is it possible to remove the titlebar and borders of the main window?
to remove the borders, you can override ResizableWindow::getBorderThickness() in your main window:
BorderSize<int> getBorderThickness() override { return {}; }
and to remove the titlebar :
setUsingNativeTitleBar (false);
setTitleBarHeight (0);
1 Like