From bc03db3759e0d8644e626adcbda066ccb2c30062 Mon Sep 17 00:00:00 2001 From: Zhao Yuhang <2546789017@qq.com> Date: 周日, 09 2月 2025 17:28:30 +0800 Subject: [PATCH] fix compilation error for old qt versions --- examples/mainwindow/dark-style.qss | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/mainwindow/dark-style.qss b/examples/mainwindow/dark-style.qss index e01c0dc..09f32ab 100644 --- a/examples/mainwindow/dark-style.qss +++ b/examples/mainwindow/dark-style.qss @@ -1,11 +1,13 @@ /* Window bar */ QWK--WindowBar[bar-active=true] { - background-color: #3C3C3C; + /*background-color: #3C3C3C;*/ + background-color: transparent; } QWK--WindowBar[bar-active=false] { - background-color: #505050; + /*background-color: #505050;*/ + background-color: transparent; } -- Gitblit v1.9.1