diff options
author | fvogel <fvogelnew1@free.fr> | 2016-02-10 22:53:30 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2016-02-10 22:53:30 (GMT) |
commit | 3cea177e222e8c8b59cfcd693faa3581340d2c3d (patch) | |
tree | d2d9a7a6c675e84678b24c4cab9e5344b01c3f4f /generic/tkText.c | |
parent | 47cbb49b5a939e1af93b945c53daa3177d9aeef0 (diff) | |
download | tk-3cea177e222e8c8b59cfcd693faa3581340d2c3d.zip tk-3cea177e222e8c8b59cfcd693faa3581340d2c3d.tar.gz tk-3cea177e222e8c8b59cfcd693faa3581340d2c3d.tar.bz2 |
-rmargincolor 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 415e0bc..0de648a 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -2297,7 +2297,8 @@ ConfigureText( || (textPtr->selTagPtr->overstrikeColor != NULL) || (textPtr->selTagPtr->underlineString != NULL) || (textPtr->selTagPtr->underlineColor != NULL) - || (textPtr->selTagPtr->lMarginColor != NULL)) { + || (textPtr->selTagPtr->lMarginColor != NULL) + || (textPtr->selTagPtr->rMarginColor != NULL)) { textPtr->selTagPtr->affectsDisplay = 1; } TkTextRedrawTag(NULL, textPtr, NULL, NULL, textPtr->selTagPtr, 1); |