aboutsummaryrefslogtreecommitdiff
path: root/src/TextTheme.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-16 11:33:13 (GMT)
committerfluxgen <fluxgen>2003-08-16 11:33:13 (GMT)
commit90b87d994257bc5a8a7230de9f4639006c2a4980 (patch)
treedb05255676ef55e022ed813e3a7079b048495c88 /src/TextTheme.cc
parente643be0e49de54eac9c4bf4889d33bbbb5868a03 (diff)
downloadfluxbox-90b87d994257bc5a8a7230de9f4639006c2a4980.zip
fluxbox-90b87d994257bc5a8a7230de9f4639006c2a4980.tar.bz2
default values on start
Diffstat (limited to 'src/TextTheme.cc')
-rw-r--r--src/TextTheme.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/TextTheme.cc b/src/TextTheme.cc
index 67f0f73..3a18b4b 100644
--- a/src/TextTheme.cc
+++ b/src/TextTheme.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: TextTheme.cc,v 1.4 2003/08/13 15:25:58 fluxgen Exp $ 23// $Id: TextTheme.cc,v 1.5 2003/08/16 11:33:13 fluxgen Exp $
24 24
25#include "TextTheme.hh" 25#include "TextTheme.hh"
26 26
@@ -37,8 +37,10 @@ TextTheme::TextTheme(FbTk::Theme &theme,
37 RootWindow(FbTk::App::instance()->display(), 37 RootWindow(FbTk::App::instance()->display(),
38 theme.screenNum()), 0, 0)) { 38 theme.screenNum()), 0, 0)) {
39 *m_justify = FbTk::LEFT; 39 *m_justify = FbTk::LEFT;
40 // load default font 40 // set default values
41 m_font->load("fixed"); 41 m_font->load("fixed");
42 m_text_color->setFromString("white", theme.screenNum());
43
42 update(); 44 update();
43} 45}
44 46