diff options
author | jenglish@flightlab.com <jenglish> | 2006-11-24 18:04:14 (GMT) |
---|---|---|
committer | jenglish@flightlab.com <jenglish> | 2006-11-24 18:04:14 (GMT) |
commit | 9fd3d6dbc814b7c5b881af0c0ff19d27a453ae51 (patch) | |
tree | 5b155465341298f1a6a698db16a5c8cd767801a4 /library/ttk/winTheme.tcl | |
parent | d5cd6ca3777b3cbc1486a86350ca40c9edaa03f5 (diff) | |
download | tk-9fd3d6dbc814b7c5b881af0c0ff19d27a453ae51.zip tk-9fd3d6dbc814b7c5b881af0c0ff19d27a453ae51.tar.gz tk-9fd3d6dbc814b7c5b881af0c0ff19d27a453ae51.tar.bz2 |
* library/ttk/altTheme.tcl, library/ttk/clamTheme.tcl,
library/ttk/defaults.tcl, library/ttk/winTheme.tcl,
library/ttk/xpTheme.tcl: explicitly specify -anchor w on TMenubutton
* tests/ttk/entry.test: Fixed font dependency; test entry-3.2
should work on all platforms now.
* library/classicTheme.tcl: Don't define or use TkClassicDefaultFont.
* generic/ttk/ttkTreeview.c, generic/ttk/ttkPanedwindow.c:
Handle missing layouts.
Diffstat (limited to 'library/ttk/winTheme.tcl')
-rw-r--r-- | library/ttk/winTheme.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/ttk/winTheme.tcl b/library/ttk/winTheme.tcl index ac4cba9..9678b10 100644 --- a/library/ttk/winTheme.tcl +++ b/library/ttk/winTheme.tcl @@ -1,5 +1,5 @@ # -# $Id: winTheme.tcl,v 1.1 2006/10/31 01:42:27 hobbs Exp $ +# $Id: winTheme.tcl,v 1.2 2006/11/24 18:04:14 jenglish Exp $ # # Ttk widget set: Windows Native theme # @@ -23,7 +23,8 @@ namespace eval ttk { style configure TButton -width -11 -relief raised -shiftrelief 1 style configure TCheckbutton -padding "2 4" style configure TRadiobutton -padding "2 4" - style configure TMenubutton -padding "8 4" -arrowsize 3 -relief raised + style configure TMenubutton \ + -padding "8 4" -arrowsize 3 -relief raised -anchor w style map TButton -relief {{!disabled pressed} sunken} |