调整越南语环境下,设置界面关于对话框的宽度

This commit is contained in:
yangjiaxuan 2024-05-16 17:57:39 +08:00
parent b5a4dd7fa9
commit 133bb2ede1
1 changed files with 3 additions and 0 deletions

View File

@ -2017,6 +2017,9 @@ void hg_settingdialog::slot_buttonAboutClicked()
QMessageBox msg(QMessageBox::NoIcon, title,
content, QMessageBox::Ok, this);
msg.setStyleSheet("QLabel{""min-width: 280px;""}");
int code = lang_get_cur_code_page();
if (code == 1258)
msg.setStyleSheet("QLabel{""min-width: 320px;""}");
msg.exec();
}