diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-13 09:53:10 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-13 09:53:10 +0000 |
commit | 523bb7ba13a5d88588a270cf8ce2f0c0ac882708 (patch) | |
tree | 6490997635549846cf304b2cfc4fc256f55d6ca7 /drv_T6963.c | |
parent | 517e84e9fd1b39fdef831c6fc5c6e774bf20a12a (diff) | |
download | lcd4linux-523bb7ba13a5d88588a270cf8ce2f0c0ac882708.tar.gz |
[lcd4linux @ 2006-08-13 09:53:10 by reinelt]
dynamic properties added (used by 'style' of text widget)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@690 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_T6963.c')
-rw-r--r-- | drv_T6963.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/drv_T6963.c b/drv_T6963.c index 9ca4c54..5ccafcb 100644 --- a/drv_T6963.c +++ b/drv_T6963.c @@ -1,4 +1,4 @@ -/* $Id: drv_T6963.c,v 1.21 2006/08/13 06:46:51 reinelt Exp $ +/* $Id: drv_T6963.c,v 1.22 2006/08/13 09:53:10 reinelt Exp $ * * new style driver for T6963-based displays * @@ -23,6 +23,9 @@ * * * $Log: drv_T6963.c,v $ + * Revision 1.22 2006/08/13 09:53:10 reinelt + * dynamic properties added (used by 'style' of text widget) + * * Revision 1.21 2006/08/13 06:46:51 reinelt * T6963 soft-timing & enhancements; indent * @@ -484,12 +487,6 @@ static int drv_T6_start(const char *section) } free(s); - s = cfg_get(section, "fontstyle", NULL); - if (s != NULL) { - if (strstr(s, "bold") != NULL) - FONT_STYLE |= FONT_STYLE_BOLD; - } - TROWS = DROWS / YRES; /* text rows */ TCOLS = DCOLS / XRES; /* text cols */ @@ -600,7 +597,7 @@ int drv_T6_init(const char *section, const int quiet) { int ret; - info("%s: %s", Name, "$Revision: 1.21 $"); + info("%s: %s", Name, "$Revision: 1.22 $"); /* real worker functions */ drv_generic_graphic_real_blit = drv_T6_blit; |