summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/text.tcl8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/text.tcl b/library/text.tcl
index 0467df5..7cf1091 100644
--- a/library/text.tcl
+++ b/library/text.tcl
@@ -466,16 +466,16 @@ bind Text <Control-MouseWheel> {
}
}
bind Text <MouseWheel> {
- tk::MouseWheel %W y %D -4.0 pixels
+ tk::MouseWheel %W y [tk::ScaleNum %D] -4.0 pixels
}
bind Text <Option-MouseWheel> {
- tk::MouseWheel %W y %D -1.2 pixels
+ tk::MouseWheel %W y [tk::ScaleNum %D] -1.2 pixels
}
bind Text <Shift-MouseWheel> {
- tk::MouseWheel %W x %D -4.0 pixels
+ tk::MouseWheel %W x [tk::ScaleNum %D] -4.0 pixels
}
bind Text <Shift-Option-MouseWheel> {
- tk::MouseWheel %W x %D -1.2 pixels
+ tk::MouseWheel %W x [tk::ScaleNum %D] -1.2 pixels
}
# ::tk::TextClosestGap --