From 74e9fe0f4f1b8cb2c3c598994e39f7ab92ff59da Mon Sep 17 00:00:00 2001 From: Rello Date: Tue, 2 Sep 2025 15:17:42 +0700 Subject: [PATCH] Update branding option for state icons Signed-off-by: Rello --- src/gui/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index f460fd71a6..5af44b7f21 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -18,11 +18,11 @@ IF(BUILD_UPDATER) add_subdirectory(updater) endif() -# Branding switch (Qt 6 only; default ON for backward compatibility) -option(IS_BRANDED_CLIENT "If ON, use branded (colored) state icons; if OFF, use neutral (unbranded) state icons" ON) -set(STATE_SUBDIR "neutral/") +# Branding switch +option(IS_BRANDED_CLIENT "If ON, use neutral state icons; if OFF, use Nextcloud themed state icons" OFF) +set(STATE_SUBDIR "") if(IS_BRANDED_CLIENT) - set(STATE_SUBDIR "colored/") + set(STATE_SUBDIR "neutral/") endif() configure_file(${CMAKE_SOURCE_DIR}/theme.qrc.in ${CMAKE_SOURCE_DIR}/theme.qrc)