diff options
author | bll <brad.lanam.comp@gmail.com> | 2018-04-22 17:49:00 (GMT) |
---|---|---|
committer | bll <brad.lanam.comp@gmail.com> | 2018-04-22 17:49:00 (GMT) |
commit | d39d277aedd02fbd22f6e49765d4c27032daceb5 (patch) | |
tree | eb103a42d0743f483bff700c7a049a8bbc1c9479 /library | |
parent | c8d2bc090124b9214705b15f823a36dfd1556b7c (diff) | |
download | tk-d39d277aedd02fbd22f6e49765d4c27032daceb5.zip tk-d39d277aedd02fbd22f6e49765d4c27032daceb5.tar.gz tk-d39d277aedd02fbd22f6e49765d4c27032daceb5.tar.bz2 |
Change all 'option add' default values to 'widgetDefault'.
Reference: bug-7432f90f
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/combobox.tcl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/ttk/combobox.tcl b/library/ttk/combobox.tcl index 6ceccef..c1b6da6 100644 --- a/library/ttk/combobox.tcl +++ b/library/ttk/combobox.tcl @@ -88,18 +88,18 @@ bind ComboboxPopdown <ButtonPress> \ ### Option database settings. # -option add *TCombobox*Listbox.font TkTextFont -option add *TCombobox*Listbox.relief flat -option add *TCombobox*Listbox.highlightThickness 0 +option add *TCombobox*Listbox.font TkTextFont widgetDefault +option add *TCombobox*Listbox.relief flat widgetDefault +option add *TCombobox*Listbox.highlightThickness 0 widgetDefault ## Platform-specific settings. # switch -- [tk windowingsystem] { x11 { - option add *TCombobox*Listbox.background white + option add *TCombobox*Listbox.background white widgetDefault } aqua { - option add *TCombobox*Listbox.borderWidth 0 + option add *TCombobox*Listbox.borderWidth 0 widgetDefault } } |