diff options
author | hobbs <hobbs> | 2002-04-05 08:43:22 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-05 08:43:22 (GMT) |
commit | edf6ae717ffa12d49b2c5163c7d44c7fa3693020 (patch) | |
tree | 55f527c63b4eba804a1795e9c2bce98a3c9cf691 /win/tkWinButton.c | |
parent | 418747a5b52e2e7ce5996ae49861c7904bc77197 (diff) | |
download | tk-edf6ae717ffa12d49b2c5163c7d44c7fa3693020.zip tk-edf6ae717ffa12d49b2c5163c7d44c7fa3693020.tar.gz tk-edf6ae717ffa12d49b2c5163c7d44c7fa3693020.tar.bz2 |
* win/tkWinButton.c (TkpDisplayButton):
* generic/tkTextMark.c (TkTextInsertDisplayProc):
* generic/tkCanvText.c (DisplayCanvText):
* generic/tkEntry.c (DisplayEntry): added Tk_SetCaretPos calls.
Diffstat (limited to 'win/tkWinButton.c')
-rw-r--r-- | win/tkWinButton.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tkWinButton.c b/win/tkWinButton.c index 42cdc3f..a9f19d5 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.14 2001/12/29 00:30:30 hobbs Exp $ + * RCS: @(#) $Id: tkWinButton.c,v 1.15 2002/04/05 08:43:22 hobbs Exp $ */ #define OEMRESOURCE @@ -706,6 +706,10 @@ TkpDisplayButton(clientData) TkWinReleaseDrawableDC(pixmap, dc, &state); } + if (butPtr->flags & GOT_FOCUS) { + Tk_SetCaretPos(tkwin, x, y, 0 /* not used */); + } + /* * Copy the information from the off-screen pixmap onto the screen, * then delete the pixmap. |