fix(settings): no border on the window, let the compositor do it's job

This commit is contained in:
Lemmy
2026-04-28 21:22:03 -04:00
parent 7a8588065b
commit e9e56e8c34
+1
View File
@@ -311,6 +311,7 @@ void SettingsWindow::buildScene(std::uint32_t width, std::uint32_t height) {
auto bg = std::make_unique<Box>();
bg->setPanelStyle();
bg->setRadius(0.0f);
bg->setBorder(clearColor(), 0);
bg->setPosition(0.0f, 0.0f);
bg->setSize(w, h);
m_panelBackground = static_cast<Box*>(m_sceneRoot->addChild(std::move(bg)));