diff options
author | fluxgen <fluxgen> | 2003-08-16 11:33:13 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-08-16 11:33:13 (GMT) |
commit | 90b87d994257bc5a8a7230de9f4639006c2a4980 (patch) | |
tree | db05255676ef55e022ed813e3a7079b048495c88 | |
parent | e643be0e49de54eac9c4bf4889d33bbbb5868a03 (diff) | |
download | fluxbox-90b87d994257bc5a8a7230de9f4639006c2a4980.zip fluxbox-90b87d994257bc5a8a7230de9f4639006c2a4980.tar.bz2 |
default values on start
-rw-r--r-- | src/TextTheme.cc | 6 |
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 | ||