Skip to content

Commit

Permalink
fix: 修复了新增个人热点的弹窗名称与安全之间的间隔过大的问题
Browse files Browse the repository at this point in the history
	新增个人热点的弹窗是3个并列的Widget,分别是genericSection、secretHotspotSection、wirelessSection
	其中secretHotspotSection即为安全选项,这个Widget没有标题,修改后给secretHotspotSection一个标题,使得3个Widget格式一致,间隔也一致。

Issue: #141

Log: 修复了新增个人热点的弹窗名称与安全之间的间隔过大的问题
  • Loading branch information
sdpyly authored and deepin-bot[bot] committed Apr 18, 2023
1 parent ec5dc8a commit 141b7f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static const QList<WirelessSecuritySetting::KeyMgmt> KeyMgmtList {
};

SecretHotspotSection::SecretHotspotSection(WirelessSecuritySetting::Ptr wsSeting, QFrame *parent)
: AbstractSection(parent)
: AbstractSection(tr("Security"), parent)
, m_keyMgmtChooser(new ComboxWidget(this))
, m_passwdEdit(new LineEditWidget(true))
, m_currentKeyMgmt(WirelessSecuritySetting::KeyMgmt::WpaNone)
Expand Down

0 comments on commit 141b7f0

Please sign in to comment.