summaryrefslogtreecommitdiffstats
path: root/kxkb/kxkbconfig.cpp
diff options
context:
space:
mode:
authorMavridis Philippe <[email protected]>2022-03-10 19:51:52 +0200
committerMavridis Philippe <[email protected]>2022-03-19 13:25:55 +0200
commit515465039af34e4bf87a3d4ae4585e9b37315310 (patch)
tree66e799511fc7067c7f4007e1bf862e22de06d89b /kxkb/kxkbconfig.cpp
parent4cd8cd29f5edac59e5c1ab7fb5e82db8c6c5c364 (diff)
downloadtdebase-515465039af34e4bf87a3d4ae4585e9b37315310.tar.gz
tdebase-515465039af34e4bf87a3d4ae4585e9b37315310.zip
kxkb: transparent indicator background feature
Signed-off-by: Mavridis Philippe <[email protected]> (cherry picked from commit d048506bb65a3f77102f07f54c7bfc16c80e003e)
Diffstat (limited to 'kxkb/kxkbconfig.cpp')
-rw-r--r--kxkb/kxkbconfig.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/kxkb/kxkbconfig.cpp b/kxkb/kxkbconfig.cpp
index a01fd6a0e..8e6890161 100644
--- a/kxkb/kxkbconfig.cpp
+++ b/kxkb/kxkbconfig.cpp
@@ -131,6 +131,7 @@ bool KxkbConfig::load(int loadMode)
m_useThemeColors = config->readBoolEntry("UseThemeColors", false);
m_colorBackground = config->readColorEntry("ColorBackground", new TQColor(TQt::gray));
+ m_bgTransparent = config->readBoolEntry("BgTransparent", false);
m_colorLabel = config->readColorEntry("ColorLabel", new TQColor(TQt::white));
m_labelFont = config->readFontEntry("LabelFont", new TQFont("sans", 10, TQFont::Bold));
m_labelShadow = config->readBoolEntry("LabelShadow", true);
@@ -230,6 +231,7 @@ void KxkbConfig::save()
config->writeEntry("UseThemeColors", m_useThemeColors);
config->writeEntry("ColorBackground", m_colorBackground);
+ config->writeEntry("BgTransparent", m_bgTransparent);
config->writeEntry("ColorLabel", m_colorLabel);
config->writeEntry("LabelFont", m_labelFont);
config->writeEntry("LabelShadow", m_labelShadow);