diff options
author | hobbs <hobbs> | 2000-02-01 11:41:09 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-02-01 11:41:09 (GMT) |
commit | 72b28710ff138c84a191a1e44c2207ba58522870 (patch) | |
tree | 462f9d19d2583612b9c3969de777574a4889f209 /generic/tkRectOval.c | |
parent | a7ac3c95aefe0dcd187bf66e8d86ee148193f397 (diff) | |
download | tk-72b28710ff138c84a191a1e44c2207ba58522870.zip tk-72b28710ff138c84a191a1e44c2207ba58522870.tar.gz tk-72b28710ff138c84a191a1e44c2207ba58522870.tar.bz2 |
* generic/tkRectOval.c (ConfigureRectOval):
* generic/tkCanvLine.c (ConfigureLine):
* generic/tkCanvPoly.c (ConfigurePoly):
* generic/tkCanvArc.c (Configure/DisplayArc): fixed handling for
negative dash values [Bug: 4104]
* generic/tkScale.c (TkRoundToResolution): fixed incorrect
assumption that (N+1)*delta = N*delta + delta with floating point
math [Bug: 3689, 4099]
(DestroyScale) Fixed check for cancelling TkpDisplayScale (was
REDRAW_ALL, is now REDRAW_PENDING)
Diffstat (limited to 'generic/tkRectOval.c')
-rw-r--r-- | generic/tkRectOval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkRectOval.c b/generic/tkRectOval.c index f5900c5..b5c78e2 100644 --- a/generic/tkRectOval.c +++ b/generic/tkRectOval.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkRectOval.c,v 1.5 2000/01/12 11:45:03 hobbs Exp $ + * RCS: @(#) $Id: tkRectOval.c,v 1.6 2000/02/01 11:41:10 hobbs Exp $ */ #include <stdio.h> @@ -439,7 +439,7 @@ ConfigureRectOval(interp, canvas, itemPtr, argc, argv, flags) */ if (rectOvalPtr->outline.activeWidth > rectOvalPtr->outline.width || - rectOvalPtr->outline.activeDash.number > 0 || + rectOvalPtr->outline.activeDash.number != 0 || rectOvalPtr->outline.activeColor != NULL || rectOvalPtr->outline.activeStipple != None || rectOvalPtr->activeFillColor != NULL || |