diff options
author | jenglish@flightlab.com <jenglish> | 2008-05-04 17:17:33 (GMT) |
---|---|---|
committer | jenglish@flightlab.com <jenglish> | 2008-05-04 17:17:33 (GMT) |
commit | 0664bfc6d2bfe23055e12e76ccd1abbd7726b778 (patch) | |
tree | 1bfb35524f23254008db5ed8b106c1175b892ac6 | |
parent | c672300857e31a78d08c322655600dc4d2da6af8 (diff) | |
download | tk-0664bfc6d2bfe23055e12e76ccd1abbd7726b778.zip tk-0664bfc6d2bfe23055e12e76ccd1abbd7726b778.tar.gz tk-0664bfc6d2bfe23055e12e76ccd1abbd7726b778.tar.bz2 |
"default" and "focus" adornments should not be disjoint [Bug 1942785]
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | macosx/ttkMacOSXTheme.c | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-05-04 Joe English <jenglish@users.sourceforge.net> + + * macosx/ttkMacOSAquaTheme.c: "default" and "focus" adornments + should not be disjoint [Bug 1942785] + 2008-04-27 Donal K. Fellows <dkf@users.sf.net> * */*.c: A large tranche of getting rid of pre-C89-isms; if your diff --git a/macosx/ttkMacOSXTheme.c b/macosx/ttkMacOSXTheme.c index 585221c..61fb213 100644 --- a/macosx/ttkMacOSXTheme.c +++ b/macosx/ttkMacOSXTheme.c @@ -27,7 +27,7 @@ * top-level window, not to the Tk_Window. BoxToRect() * accounts for this. * - * RCS: @(#) $Id: ttkMacOSXTheme.c,v 1.21 2007/12/13 15:27:10 dgp Exp $ + * RCS: @(#) $Id: ttkMacOSXTheme.c,v 1.22 2008/05/04 17:17:33 jenglish Exp $ */ #include "tkMacOSXPrivate.h" @@ -160,6 +160,8 @@ static Ttk_StateTable ButtonValueTable[] = { }; static Ttk_StateTable ButtonAdornmentTable[] = { + { kThemeAdornmentDefault| kThemeAdornmentFocus, + TTK_STATE_ALTERNATE| TTK_STATE_FOCUS, 0 }, { kThemeAdornmentDefault, TTK_STATE_ALTERNATE, 0 }, { kThemeAdornmentFocus, TTK_STATE_FOCUS, 0 }, { kThemeAdornmentNone, 0, 0 } |