summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2012-01-26 07:20:11 (GMT)
committerfvogel <fvogelnew1@free.fr>2012-01-26 07:20:11 (GMT)
commit03a59b0e85ec9611656c4277d58e3202095e158b (patch)
treed71f0467bbf30890078b3b18809ede0ac51be9d1
parent9db0574438d863621647428db163a9720fa1428c (diff)
parent0c6f1728590dc6ab2ad6d99559d75aaaecf9baa4 (diff)
downloadtk-03a59b0e85ec9611656c4277d58e3202095e158b.zip
tk-03a59b0e85ec9611656c4277d58e3202095e158b.tar.gz
tk-03a59b0e85ec9611656c4277d58e3202095e158b.tar.bz2
[Bug-1754043] and [Bug-2321450]: When -blockcursor is true, the cursor appears as a blinking bar which expands to the right edge of the widget.
-rw-r--r--ChangeLog6
-rw-r--r--generic/tkTextDisp.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e459de..a775e7c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-01-26 Francois Vogel <fvogelnew1@free.fr>
+
+ * generic/tkTextDisp.c: [Bug-1754043] and [Bug-2321450]: When
+ -blockcursor is true, the cursor appears as a blinking bar which
+ expands to the right edge of the widget.
+
2012-01-25 Jan Nijtmans <nijtmans@users.sf.net>
* generic/tkImgPhoto.c: [Bug 2433260]: non-critical error in
diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c
index 144bca9..5f30b11 100644
--- a/generic/tkTextDisp.c
+++ b/generic/tkTextDisp.c
@@ -6851,6 +6851,9 @@ TkTextIndexBbox(
if (charWidthPtr != NULL) {
*charWidthPtr = dInfoPtr->maxX - *xPtr;
+ if (*charWidthPtr > textPtr->charWidth) {
+ *charWidthPtr = textPtr->charWidth;
+ }
}
if (*xPtr > dInfoPtr->maxX) {
*xPtr = dInfoPtr->maxX;