diff options
author | das <das> | 2008-12-07 16:40:30 (GMT) |
---|---|---|
committer | das <das> | 2008-12-07 16:40:30 (GMT) |
commit | 79b9652e156a0e116812d2c5894bd7afef2d344e (patch) | |
tree | a338c51c6295c3f39768ed6c4482c562b62caf24 /macosx | |
parent | 2477002aea17c7c1ad1cc81c04b014a7e34b199a (diff) | |
download | tk-79b9652e156a0e116812d2c5894bd7afef2d344e.zip tk-79b9652e156a0e116812d2c5894bd7afef2d344e.tar.gz tk-79b9652e156a0e116812d2c5894bd7afef2d344e.tar.bz2 |
SeparatorElementSize: fix state lookup
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/ttkMacOSXTheme.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/ttkMacOSXTheme.c b/macosx/ttkMacOSXTheme.c index 042ab98..4cdf80c 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.2.1 2008/05/04 17:16:51 jenglish Exp $ + * RCS: @(#) $Id: ttkMacOSXTheme.c,v 1.21.2.2 2008/12/07 16:40:30 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -700,12 +700,13 @@ static void SeparatorElementDraw( Drawable d, Ttk_Box b, unsigned int state) { Rect bounds = BoxToRect(d, b); - ThemeDrawState drawState = Ttk_StateTableLookup(ThemeStateTable, state); + ThemeDrawState drawState; /* * DrawThemeSeparator only supports kThemeStateActive / kThemeStateInactive */ state &= TTK_STATE_BACKGROUND; + drawState = Ttk_StateTableLookup(ThemeStateTable, state); BEGIN_DRAWING(d) ChkErr(DrawThemeSeparator, &bounds, drawState); END_DRAWING |