summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordrh <drh@sqlite.org>2003-01-17 19:54:04 (GMT)
committerdrh <drh@sqlite.org>2003-01-17 19:54:04 (GMT)
commitc1172257ff1905ba2fbabca764308b2f0b776342 (patch)
tree8966624441e5f8f8b8ff0f5c9fe3f938a05cd911 /ChangeLog
parenta7c7b0a8ef6483989d0a26c1ecff26082af9fed7 (diff)
downloadtk-c1172257ff1905ba2fbabca764308b2f0b776342.zip
tk-c1172257ff1905ba2fbabca764308b2f0b776342.tar.gz
tk-c1172257ff1905ba2fbabca764308b2f0b776342.tar.bz2
Increase the size of the clipping box for lines in bug #663981 so that
Tk extensions that attempt to print a canvas in a windows GDI printer will still work.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a691b6..ad9fbad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2003-01-17 D. Richard Hipp <drh@hwaci.com>
+ * generic/tkCanvUtil.c: The clipping algorithm introduced on 2003-01-08
+ was unnecessarily aggressive in reducing the size of the clipping box.
+ This did not cause a problem for normal display, but did create
+ trouble for some extensions that attempt to render a canvas on a
+ GDI printer under Windows. The patch here relaxes the constraints on
+ the clipping box somewhat. [Bug #663981]
+
2003-01-14 Joe English <jenglish@users.sourceforge.net>
* generic/tkSelect.c (Tk_CreateSelHandler):
Fix for #666346 "Selection handling crashes under KDE 3.0"
@@ -37,7 +45,7 @@
* generic/tkCanvas.h:
* generic/tkCanvUtil.c: Clip long lines so that they will display
properly even on windowing systems where coordinates are expressed
- as 16-bit numbers. [But #663981]
+ as 16-bit numbers. [Bug #663981]
2003-01-03 Jeff Hobbs <jeffh@ActiveState.com>