aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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