fix bug 145443

This commit is contained in:
zhangyuanyuan1 2022-10-25 17:46:34 +08:00 committed by jzxc95
parent c92e511d7c
commit e5c1d7e498
5 changed files with 9 additions and 2 deletions

View File

@ -283,6 +283,7 @@ void WlanListItem::initWlanUI()
m_pwdFrameLyt->addWidget(m_pwdLineEdit);
m_connectButton = new QPushButton(m_pwdFrame);
m_connectButton->setProperty("needTranslucent", true);
m_connectButton->setFixedSize(CONNECT_BUTTON_WIDTH, PWD_AREA_HEIGHT);
m_connectButton->setText(tr("Connect"));
m_connectButton->setEnabled(false);
@ -665,4 +666,3 @@ void WlanListItem::setConnectButtonState()
m_connectButton->setPalette(btnPal);
}
}

View File

@ -363,7 +363,7 @@ void MainWindow::initDbusConnnect()
QString("mode_change_signal"), this, SLOT(onTabletModeChanged(bool)));
connect(KWindowSystem::self(), &KWindowSystem::activeWindowChanged, this,[&](WId activeWindowId){
if (activeWindowId != this->winId()) {
if (activeWindowId != this->winId() && activeWindowId != 0) {
hideMainwindow();
}
});

View File

@ -729,6 +729,7 @@ void LanPage::initUI()
m_activatedLanListWidget->setFixedHeight(ITEM_HEIGHT); //active区域固定高度,只显示一个条目
m_activatedLanListWidget->setFixedWidth(MIN_WIDTH);
m_activatedLanListWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
m_activatedLanListWidget->setProperty("needTranslucent", true);
m_activatedNetLayout->addWidget(m_activatedLanListWidget);
m_inactivatedNetLabel->setText(tr("Inactivated LAN"));
@ -740,6 +741,8 @@ void LanPage::initUI()
m_inactivatedLanListWidget->verticalScrollBar()->setProperty("drawScrollBarGroove",false); //去除滚动条的外侧黑框
m_inactivatedLanListWidget->verticalScrollBar()->setSingleStep(SCROLL_STEP);
m_inactivatedLanListWidget->verticalScrollBar()->setContextMenuPolicy(Qt::NoContextMenu);
m_inactivatedLanListWidget->verticalScrollBar()->setProperty("needTranslucent", true);
m_inactivatedLanListWidget->setProperty("needTranslucent", true);
m_inactivatedAreaLayout->addWidget(m_inactivatedLanListWidget);
QPalette pal = m_activatedLanListWidget->palette();

View File

@ -50,6 +50,7 @@ void TabPage::initUI()
m_titleLayout->setContentsMargins(TITLE_LAYOUT_MARGINS);
m_titleLabel = new QLabel(m_titleFrame);
m_netSwitch = new KSwitchButton(m_titleFrame);
m_netSwitch->setTranslucent(true);
m_titleLayout->addWidget(m_titleLabel);
m_titleLayout->addStretch();
m_titleLayout->addWidget(m_netSwitch);

View File

@ -114,6 +114,7 @@ void WlanPage::initWlanUI()
m_activatedNetListWidget->setFixedHeight(NORMAL_HEIGHT);
m_activatedNetListWidget->setFixedWidth(MIN_WIDTH);
m_activatedNetListWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
m_activatedNetListWidget->setProperty("needTranslucent", true);
m_activatedNetLayout->addWidget(m_activatedNetListWidget);
m_inactivatedNetLabel->setText(tr("Other WLAN"));
@ -126,6 +127,8 @@ void WlanPage::initWlanUI()
m_inactivatedNetListWidget->verticalScrollBar()->setProperty("drawScrollBarGroove",false); //去除滚动条的外侧黑框
m_inactivatedNetListWidget->verticalScrollBar()->setSingleStep(SCROLL_STEP);
m_inactivatedNetListWidget->verticalScrollBar()->setContextMenuPolicy(Qt::NoContextMenu);
m_inactivatedNetListWidget->verticalScrollBar()->setProperty("needTranslucent", true);
m_inactivatedNetListWidget->setProperty("needTranslucent", true);
addWlanMoreItem();
m_inactivatedAreaLayout->addWidget(m_inactivatedNetListWidget);