Skip to content

Commit

Permalink
fix: 页面内“级别”显示为“level
Browse files Browse the repository at this point in the history
页面内“级别”显示为“level

Log: 页面内“级别”显示为“level
Bug: https://pms.uniontech.com/bug-view-260291.html
  • Loading branch information
tanghongyao authored and deepin-bot[bot] committed Jun 17, 2024
1 parent dd0c53e commit 20d77d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/filtercontent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ void FilterContent::initUI()
// set level info
hLayout_all = new QHBoxLayout;
QHBoxLayout *hLayout_lvl = new QHBoxLayout;
lvTxt = new DLabel(DApplication::translate("Label", "Level:"), this);
lvTxt->setAccessibleName(DApplication::translate("Label", "Level:"));
lvTxt = new DLabel(DApplication::translate("Label", "Level: "), this);
lvTxt->setAccessibleName(DApplication::translate("Label", "Level: "));
lvTxt->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
cbx_lv = new LogCombox(this);
cbx_lv->view()->setAccessibleName("combobox_level_view");
Expand All @@ -120,8 +120,8 @@ void FilterContent::initUI()
hLayout_lvl->setSpacing(6);
hLayout_all->addLayout(hLayout_lvl);
QHBoxLayout *hLayout_dnf_lvl = new QHBoxLayout;
dnflvTxt = new DLabel(DApplication::translate("Label", "Level:"), this);
dnflvTxt->setAccessibleName("dnf" + DApplication::translate("Label", "Level:"));
dnflvTxt = new DLabel(DApplication::translate("Label", "Level: "), this);
dnflvTxt->setAccessibleName("dnf" + DApplication::translate("Label", "Level: "));
dnflvTxt->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
cbx_dnf_lv = new LogCombox(this);
cbx_dnf_lv->view()->setAccessibleName("combobox_dnflevel_view");
Expand Down

0 comments on commit 20d77d9

Please sign in to comment.