From f20e77cbd2724af11ed36f9e85980b608a5629ae Mon Sep 17 00:00:00 2001 From: hobbs Date: Fri, 10 Oct 2003 00:03:56 +0000 Subject: correct imageYOffset for buttons with just images --- ChangeLog | 5 +++++ win/tkWinButton.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3ee1127..a27dc78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-10-09 Jeff Hobbs + + * win/tkWinButton.c (TkpDisplayButton): correct imageYOffset for + buttons with just images. + 2003-10-06 Don Porter * doc/ConfigWidg.3: Removed reference to Tk_Offset from the diff --git a/win/tkWinButton.c b/win/tkWinButton.c index 415a202..2ad0c4b 100644 --- a/win/tkWinButton.c +++ b/win/tkWinButton.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinButton.c,v 1.20.2.2 2003/04/26 02:53:47 hobbs Exp $ + * RCS: @(#) $Id: tkWinButton.c,v 1.20.2.3 2003/10/10 00:03:57 hobbs Exp $ */ #define OEMRESOURCE @@ -560,15 +560,15 @@ TkpDisplayButton(clientData) y += offset; } imageXOffset += x; - imageXOffset += y; + imageYOffset += y; if (butPtr->image != NULL) { if ((butPtr->selectImage != NULL) && (butPtr->flags & SELECTED)) { Tk_RedrawImage(butPtr->selectImage, 0, 0, width, height, - pixmap, x, y); + pixmap, imageXOffset, imageYOffset); } else { Tk_RedrawImage(butPtr->image, 0, 0, width, height, pixmap, - x, y); + imageXOffset, imageYOffset); } } else { XSetClipOrigin(butPtr->display, gc, x, y); -- cgit v0.12