summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2008-12-07 16:29:38 (GMT)
committerdas <das>2008-12-07 16:29:38 (GMT)
commit8ea46c44a03f543a4c06172a44e845eba0fef9e2 (patch)
tree7de10528ab8d948837c8e3e3aaf377016d66ab75
parentad0c70857c411d5b0df9ac795d766a1b31522107 (diff)
downloadtk-8ea46c44a03f543a4c06172a44e845eba0fef9e2.zip
tk-8ea46c44a03f543a4c06172a44e845eba0fef9e2.tar.gz
tk-8ea46c44a03f543a4c06172a44e845eba0fef9e2.tar.bz2
SeparatorElementSize: fix state lookup
-rw-r--r--macosx/ttkMacOSXTheme.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/ttkMacOSXTheme.c b/macosx/ttkMacOSXTheme.c
index 61fb213..bc9fabc 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.22 2008/05/04 17:17:33 jenglish Exp $
+ * RCS: @(#) $Id: ttkMacOSXTheme.c,v 1.23 2008/12/07 16:29:38 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