diff options
author | fvogel <fvogelnew1@free.fr> | 2016-02-09 21:40:51 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2016-02-09 21:40:51 (GMT) |
commit | c8dabf74db56545232a68b807db99bcc9fe8623c (patch) | |
tree | 4ab8508ba4799df814ae9340580d78b433c56b39 /generic/tkText.c | |
parent | bfc0e68c24746362ccf16c7907dfa9da6b6cb7a7 (diff) | |
download | tk-c8dabf74db56545232a68b807db99bcc9fe8623c.zip tk-c8dabf74db56545232a68b807db99bcc9fe8623c.tar.gz tk-c8dabf74db56545232a68b807db99bcc9fe8623c.tar.bz2 |
-underlinefg tag configuration option: implementation
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index ccc9691..7010601 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -2294,7 +2294,8 @@ ConfigureText( || (textPtr->selTagPtr->fgStipple != None) || (textPtr->selTagPtr->selFgStipple != None) || (textPtr->selTagPtr->overstrikeString != NULL) - || (textPtr->selTagPtr->underlineString != NULL)) { + || (textPtr->selTagPtr->underlineString != NULL) + || (textPtr->selTagPtr->underlineColor != NULL)) { textPtr->selTagPtr->affectsDisplay = 1; } TkTextRedrawTag(NULL, textPtr, NULL, NULL, textPtr->selTagPtr, 1); |