Merge branch '2303bug-tray' into 'yhkylin/v101'
fix bug #172627 HW990已连接网络显示WiFi6/6+问题 See merge request kylinos-src/kylin-nm!173
This commit is contained in:
commit
3659e2067a
|
@ -456,9 +456,7 @@ void WlanListItem::refreshIcon(bool isActivated)
|
|||
int signalStrength = 0;
|
||||
QString uni = "";
|
||||
QString secuType = "";
|
||||
if (m_isShowWifi6) {
|
||||
category = m_wirelessNetItem.getCategory(m_wirelessNetItem.m_uni);
|
||||
}
|
||||
category = m_wirelessNetItem.getCategory(m_wirelessNetItem.m_uni);
|
||||
signalStrength = m_wirelessNetItem.m_signalStrength;
|
||||
|
||||
if (isActivated) {
|
||||
|
@ -468,6 +466,10 @@ void WlanListItem::refreshIcon(bool isActivated)
|
|||
}
|
||||
}
|
||||
|
||||
if (!m_isShowWifi6) {
|
||||
category = 0;
|
||||
}
|
||||
|
||||
QString iconPath = getIcon(m_hasPwd, signalStrength, category);
|
||||
m_netButton->setButtonIcon(QIcon::fromTheme(iconPath));
|
||||
|
||||
|
|
Loading…
Reference in New Issue