From aa5c5a6753ebb3863b7c0397ac7f48af3c5600ed Mon Sep 17 00:00:00 2001 From: donghualin Date: Thu, 5 Feb 2026 11:01:13 +0800 Subject: [PATCH] fix: update tips color to white update tips color to white Log: update tips color to white PMS: BUG-316751 --- dss-network-plugin/networkmodule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dss-network-plugin/networkmodule.cpp b/dss-network-plugin/networkmodule.cpp index 2817b1ea..53a04eb7 100644 --- a/dss-network-plugin/networkmodule.cpp +++ b/dss-network-plugin/networkmodule.cpp @@ -121,7 +121,7 @@ QWidget *NetworkModule::itemTipsWidget() const { QWidget *itemTips = m_netStatus->createItemTips(); QPalette p = itemTips->palette(); - p.setColor(QPalette::BrightText, Qt::black); + p.setColor(QPalette::BrightText, Qt::white); itemTips->setPalette(p); return itemTips; }