summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfvogel <fvogel@noemail.net>2016-09-28 15:54:09 (GMT)
committerfvogel <fvogel@noemail.net>2016-09-28 15:54:09 (GMT)
commit4901662ec60e3371a72cd34acc9b3bd25a7374e0 (patch)
treeb8d76b5216773e511ce852f90d252cf47d564e00
parent38ad1c5f53895565f2b34e77210278eebeb03519 (diff)
downloadtk-4901662ec60e3371a72cd34acc9b3bd25a7374e0.zip
tk-4901662ec60e3371a72cd34acc9b3bd25a7374e0.tar.gz
tk-4901662ec60e3371a72cd34acc9b3bd25a7374e0.tar.bz2
Fixed [1082213fff] - word wrapping should trim excess spaces
FossilOrigin-Name: 69686423dc4386b839edbbfbb0dede94724a0343
-rw-r--r--generic/tkTextDisp.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c
index a135084..892b935 100644
--- a/generic/tkTextDisp.c
+++ b/generic/tkTextDisp.c
@@ -7612,6 +7612,18 @@ TkTextCharLayoutProc(
bytesThatFit++;
}
+ if (wrapMode == TEXT_WRAPMODE_WORD) {
+ while (p[bytesThatFit] == ' ') {
+ /*
+ * Space characters that would go at the beginning of the
+ * next line are allocated to the present line. This gives
+ * the effect of trimming white spaces at the beginning of
+ * wrapped lines.
+ */
+
+ bytesThatFit++;
+ }
+ }
if (bytesThatFit == 0) {
#if TK_LAYOUT_WITH_BASE_CHUNKS
chunkPtr->clientData = NULL;