Fixed: The problem of being blocked in English mode of 'Hide WLAN'

解决'加入网络'英文模式下文字被遮挡的问题
bug:61783
This commit is contained in:
fensite 2021-06-18 19:00:46 +08:00
parent 00e1642cc8
commit cb496bf670
1 changed files with 2 additions and 1 deletions

View File

@ -327,10 +327,11 @@ void MainWindow::createTopWifiUI()
lbTopWifiList->show();
/*新建有线网按钮*/
btnAddNet = new QPushButton(topWifiListWidget);
btnAddNet->resize(W_BTN_FUN, H_BTN_FUN);
btnAddNet->move(X_BTN_FUN, Y_BTN_FUN);
btnAddNet->setText(tr("Hide WLAN"));//"加入网络"
btnAddNet->setStyleSheet(funcBtnQss);
int textWith = QFontMetrics(btnAddNet->font()).width(btnAddNet->text());
btnAddNet->resize(textWith > W_BTN_FUN ? textWith : W_BTN_FUN, H_BTN_FUN);
btnAddNet->setFocusPolicy(Qt::NoFocus);
btnAddNet->show();
connect(btnAddNet,SIGNAL(clicked()),this,SLOT(onBtnAddNetClicked()));