aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/ThemeItems.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/ThemeItems.cc')
-rw-r--r--src/FbTk/ThemeItems.cc18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/FbTk/ThemeItems.cc b/src/FbTk/ThemeItems.cc
index e88ab55..ea3703c 100644
--- a/src/FbTk/ThemeItems.cc
+++ b/src/FbTk/ThemeItems.cc
@@ -132,22 +132,8 @@ void ThemeItem<Font>::setDefaultValue() {
132 if (!m_value.load("__DEFAULT__")) { 132 if (!m_value.load("__DEFAULT__")) {
133 cerr<<"ThemeItem<Font>: Warning! Failed to load default value 'fixed'"<<endl; 133 cerr<<"ThemeItem<Font>: Warning! Failed to load default value 'fixed'"<<endl;
134 } else { 134 } else {
135 string effect(ThemeManager::instance().resourceValue(name()+".effect", altName()+".Effect")); 135 m_value.setHalo(false);
136 if (effect == "halo") { 136 m_value.setShadow(false);
137 m_value.setHalo(true);
138 Color halo_color(ThemeManager::instance().resourceValue(name()+".halo.color", altName()+".Halo.Color").c_str(),
139 theme().screenNum());
140 m_value.setHaloColor(halo_color);
141
142 } else if (effect == "shadow" ) {
143 Color shadow_color(ThemeManager::instance().resourceValue(name()+".shadow.color", altName()+".Shadow.Color").c_str(),
144 theme().screenNum());
145
146 m_value.setShadow(true);
147 m_value.setShadowColor(shadow_color);
148 m_value.setShadowOffX(atoi(ThemeManager::instance().resourceValue(name()+".shadow.x", altName()+".Shadow.X").c_str()));
149 m_value.setShadowOffY(atoi(ThemeManager::instance().resourceValue(name()+".shadow.y", altName()+".Shadow.Y").c_str()));
150 }
151 } 137 }
152} 138}
153 139