Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-devicemanager (6.0.17) unstable; urgency=medium

* new version 6.0.17

-- shuaijie <shuaijie@uniontech.com> Fri, 05 Jan 2024 10:20:11 +0800

deepin-devicemanager (6.0.16) unstable; urgency=medium

* new version 6.0.16
Expand Down
2 changes: 1 addition & 1 deletion deepin-devicemanager/src/Page/PageDetail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void PageDetail::showDeviceInfo(const QList<DeviceBaseInfo *> &lstInfo)
connect(txtBrowser, &TextBrowser::refreshInfo, this, &PageDetail::refreshInfo);
connect(txtBrowser, &TextBrowser::exportInfo, this, &PageDetail::exportInfo);
connect(txtBrowser, &TextBrowser::copyAllInfo, this, &PageDetail::slotCopyAllInfo);
addWidgets(txtBrowser, device->enable() && device->available());
addWidgets(txtBrowser, device->enable() && device->available() && !device->getOtherAttribs().isEmpty());
// 当添加到最后一个设备详细信息时,隐藏分隔符
if (device == lstInfo.last())
m_ListDetailSeperator[lstInfo.size() - 1]->setVisible(false);
Expand Down