summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-30 21:06:15 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-30 21:06:15 (GMT)
commit86ce4247795bfaf951ae5032f8787960ec73d209 (patch)
tree72981e69737e6c8119c24f0a013eef2d9b7c7f18 /library/ttk
parentdfb1ccdde6d520f3c7947df2f8d767745392f229 (diff)
downloadtk-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.tcl2
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.