feat(ui): add NetworkDevicesToConnectWidget, update mainwindow

This commit is contained in:
uncor3
2026-02-01 01:49:00 -08:00
parent b407070829
commit d4100c48a9
6 changed files with 376 additions and 19 deletions
+3 -2
View File
@@ -79,8 +79,9 @@ void ToolboxWidget::setupUI()
m_scrollArea = new QScrollArea();
m_scrollArea->setWidgetResizable(true);
m_scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
m_scrollArea->setFrameStyle(QFrame::NoFrame);
m_scrollArea->viewport()->setAutoFillBackground(false);
m_scrollArea->setStyleSheet(
"QScrollArea { background: transparent; border: none; }");
m_scrollArea->viewport()->setStyleSheet("background: transparent;");
m_contentWidget = new QWidget();
QVBoxLayout *contentLayout = new QVBoxLayout(m_contentWidget);