diff options
author | simonb <simonb> | 2005-04-27 15:15:36 (GMT) |
---|---|---|
committer | simonb <simonb> | 2005-04-27 15:15:36 (GMT) |
commit | 9970dd11c7f9c0d9d91601c9e9785a857ca2c6d8 (patch) | |
tree | 5c2ed44be50661b590b7a2771a1fad6d4e845177 /src/ToolFactory.cc | |
parent | 8a43bec0e8da33da4b8147658af0516c536a3309 (diff) | |
download | fluxbox_pavel-9970dd11c7f9c0d9d91601c9e9785a857ca2c6d8.zip fluxbox_pavel-9970dd11c7f9c0d9d91601c9e9785a857ca2c6d8.tar.bz2 |
fix a few more bugs with recent reworking stuff
Some fixes could incidentally fix a few other bugs... the flaws were
pre-existing, I've just been weeding out a lot of duplication
Diffstat (limited to 'src/ToolFactory.cc')
-rw-r--r-- | src/ToolFactory.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ToolFactory.cc b/src/ToolFactory.cc index 47dc6bc..90dd70e 100644 --- a/src/ToolFactory.cc +++ b/src/ToolFactory.cc | |||
@@ -153,9 +153,13 @@ ToolbarItem *ToolFactory::create(const std::string &name, const FbTk::FbWindow & | |||
153 | 153 | ||
154 | void ToolFactory::updateThemes() { | 154 | void ToolFactory::updateThemes() { |
155 | m_clock_theme.setAntialias(screen().antialias()); | 155 | m_clock_theme.setAntialias(screen().antialias()); |
156 | m_clock_theme.reconfigTheme(); | ||
156 | m_iconbar_theme.setAntialias(screen().antialias()); | 157 | m_iconbar_theme.setAntialias(screen().antialias()); |
158 | m_iconbar_theme.reconfigTheme(); | ||
157 | m_button_theme->setAntialias(screen().antialias()); | 159 | m_button_theme->setAntialias(screen().antialias()); |
160 | m_button_theme->reconfigTheme(); | ||
158 | m_workspace_theme->setAntialias(screen().antialias()); | 161 | m_workspace_theme->setAntialias(screen().antialias()); |
162 | m_workspace_theme->reconfigTheme(); | ||
159 | } | 163 | } |
160 | 164 | ||
161 | 165 | ||