From 6102475dafefe710f0f2087d26e3f427d97738a4 Mon Sep 17 00:00:00 2001 From: Zhang Dingyuan Date: Tue, 7 Mar 2023 15:07:00 +0800 Subject: [PATCH] fix: bluetooth not refresh button Closed: https://github.com/linuxdeepin/developer-center/issues/3809 --- plugins/bluetooth/componments/bluetoothadapteritem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/bluetooth/componments/bluetoothadapteritem.cpp b/plugins/bluetooth/componments/bluetoothadapteritem.cpp index bae6c7436..228bbf08a 100644 --- a/plugins/bluetooth/componments/bluetoothadapteritem.cpp +++ b/plugins/bluetooth/componments/bluetoothadapteritem.cpp @@ -184,9 +184,9 @@ void BluetoothAdapterItem::onAdapterNameChanged(const QString name) void BluetoothAdapterItem::updateIconTheme(DGuiApplicationHelper::ColorType type) { if (type == DGuiApplicationHelper::LightType) - m_refreshBtn->setRotateIcon(":/wireless/resources/wireless/refresh_dark.svg"); + m_refreshBtn->setRotateIcon(":/refresh_dark.svg"); else - m_refreshBtn->setRotateIcon(":/wireless/resources/wireless/refresh.svg"); + m_refreshBtn->setRotateIcon(":/refresh.svg"); } QSize BluetoothAdapterItem::sizeHint() const