diff options
author | jenglish <jenglish@flightlab.com> | 2006-11-27 06:53:55 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2006-11-27 06:53:55 (GMT) |
commit | f712f4ec5ef0bcc07b9d89ea382dd50c02119ee6 (patch) | |
tree | 3306d90d76a3f92d63551f764257f107f5498d36 /library/ttk/button.tcl | |
parent | f9e2925711ddf6f1acc994cb233cf91c8bdb11b2 (diff) | |
download | tk-f712f4ec5ef0bcc07b9d89ea382dd50c02119ee6.zip tk-f712f4ec5ef0bcc07b9d89ea382dd50c02119ee6.tar.gz tk-f712f4ec5ef0bcc07b9d89ea382dd50c02119ee6.tar.bz2 |
* generic/ttk/ttkWidget.c, generic/ttk/ttkPaned.c Fix for #1603506
* library/ttk/button.tcl, library/ttk/combobox.tcl,
library/ttk/utils.tcl: Rename ttk::CopyBindings to ttk::copyBindings
* generic/ttk/ttkTreeview.c, doc/ttk_treeview.n:
-displaycolumns {} now means "no columns" instead of "all columns".
Use -displaycolumns #all for "all columns" [Fixes #1547622].
Diffstat (limited to 'library/ttk/button.tcl')
-rw-r--r-- | library/ttk/button.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/ttk/button.tcl b/library/ttk/button.tcl index ccc1fb4..494a674 100644 --- a/library/ttk/button.tcl +++ b/library/ttk/button.tcl @@ -1,5 +1,5 @@ # -# $Id: button.tcl,v 1.1 2006/10/31 01:42:26 hobbs Exp $ +# $Id: button.tcl,v 1.2 2006/11/27 06:53:55 jenglish Exp $ # # Bindings for Buttons, Checkbuttons, and Radiobuttons. # @@ -36,8 +36,8 @@ bind TButton <Button1-Enter> \ # Checkbuttons and Radiobuttons have the same bindings as Buttons: # -ttk::CopyBindings TButton TCheckbutton -ttk::CopyBindings TButton TRadiobutton +ttk::copyBindings TButton TCheckbutton +ttk::copyBindings TButton TRadiobutton # ...plus a few more: |