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 | f656a6049f47163469486e2840607ed79d2bebd1 (patch) | |
tree | 373cfc06c2da26845745150dfa87d2244e6e1651 /library/ttk | |
parent | a74f5d2c79ac224546adb83aea7b3ea2527b98ca (diff) | |
download | tk-f656a6049f47163469486e2840607ed79d2bebd1.zip tk-f656a6049f47163469486e2840607ed79d2bebd1.tar.gz tk-f656a6049f47163469486e2840607ed79d2bebd1.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/ttk')
-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 |