diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2016-09-22 13:42:38 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2016-09-22 13:42:38 (GMT) |
commit | 1b5c660e330eddb121d8400dafafffa917beeb46 (patch) | |
tree | 373cfc06c2da26845745150dfa87d2244e6e1651 /library | |
parent | 17993a942afc2c375f311dd73083e4f1d3339dab (diff) | |
download | tk-1b5c660e330eddb121d8400dafafffa917beeb46.zip tk-1b5c660e330eddb121d8400dafafffa917beeb46.tar.gz tk-1b5c660e330eddb121d8400dafafffa917beeb46.tar.bz2 |
Correct expansion of the spinbox textarea for the vista theme.
The spinbox textarea should stretch to fill the widget and does so
with all except the vista theme.
Added a test to check for this expansion to avoid regression.
Fix identified Kumba on StackOverflow
( https://stackoverflow.com/a/36393680/291641 )
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/vistaTheme.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/ttk/vistaTheme.tcl b/library/ttk/vistaTheme.tcl index 99410cb..3f75f51 100644 --- a/library/ttk/vistaTheme.tcl +++ b/library/ttk/vistaTheme.tcl @@ -133,7 +133,7 @@ namespace eval ttk::theme::vista { Spinbox.background -sticky news -children { Spinbox.padding -sticky news -children { Spinbox.innerbg -sticky news -children { - Spinbox.textarea -expand 1 -sticky {} + Spinbox.textarea -expand 1 } } Spinbox.uparrow -side top -sticky ens |