Merge branch 'dbus-interface' into 'dbus-interface'

Fix:bug  Wlanlistitem fold problem when click other component...

See merge request kylin-desktop/kylin-nm!391
This commit is contained in:
ren peijia 2021-11-09 05:55:58 +00:00
commit 7cacee68a7
1 changed files with 8 additions and 0 deletions

View File

@ -167,6 +167,12 @@ void WlanListItem::leaveEvent(QEvent *event)
bool WlanListItem::eventFilter(QObject *watched, QEvent *event)
{
if (watched == m_showPwdButton || watched == m_autoConnectCheckBox) {
if (event->type() == QEvent::FocusIn) {
m_pwdLineEdit->setFocus();
}
}
if (watched == m_pwdLineEdit) {
if (event->type() == QEvent::FocusOut) {
m_focusIsOut = true;
@ -219,6 +225,7 @@ void WlanListItem::initWlanUI()
m_pwdLineEdit->setLayout(m_pwdLineEditLyt);
m_showPwdButton = new QPushButton(m_pwdLineEdit);
m_showPwdButton->installEventFilter(this);
m_showPwdButton->setFixedSize(SHOW_PWD_BUTTON_SIZE);
m_showPwdButton->setAutoFillBackground(false);
m_showPwdButton->setIcon(QIcon(":/res/h/hide-pwd.png"));
@ -243,6 +250,7 @@ void WlanListItem::initWlanUI()
m_autoConnectFrame->setLayout(m_autoConnectFrameLyt);
m_autoConnectCheckBox = new QCheckBox(m_autoConnectFrame);
m_autoConnectCheckBox->installEventFilter(this);
m_autoConnectCheckBox->setChecked(true);
m_autoConnectCheckBox->setFixedSize(SHOW_PWD_BUTTON_SIZE);
m_autoConnectFrameLyt->addWidget(m_autoConnectCheckBox);