diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-30 21:06:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-30 21:06:15 (GMT) |
commit | 86ce4247795bfaf951ae5032f8787960ec73d209 (patch) | |
tree | 72981e69737e6c8119c24f0a013eef2d9b7c7f18 /library/ttk | |
parent | dfb1ccdde6d520f3c7947df2f8d767745392f229 (diff) | |
download | tk-86ce4247795bfaf951ae5032f8787960ec73d209.zip tk-86ce4247795bfaf951ae5032f8787960ec73d209.tar.gz tk-86ce4247795bfaf951ae5032f8787960ec73d209.tar.bz2 |
Keep Option-MouseWheel scrolling 10 x MouseWheel scrolling.
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/utils.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/ttk/utils.tcl b/library/ttk/utils.tcl index c5b17dc..065716b 100644 --- a/library/ttk/utils.tcl +++ b/library/ttk/utils.tcl @@ -286,7 +286,7 @@ proc ttk::copyBindings {from to} { proc ttk::bindMouseWheel {bindtag callback} { bind $bindtag <MouseWheel> "$callback %D -120.0" - bind $bindtag <Option-MouseWheel> "$callback %D -36.0" + bind $bindtag <Option-MouseWheel> "$callback %D -12.0" } ## Mousewheel bindings for standard scrollable widgets. |