diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-01-30 15:27:00 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-01-30 15:27:00 (GMT) |
commit | b8b0c8ace06902ac54d190ebe362895b7cc85750 (patch) | |
tree | d9397c2110d4ed67517b5c545b04433ca99f0e1c /library | |
parent | e9a9769733596f3650e76f2f1fe24868e2b7c6ed (diff) | |
download | tk-b8b0c8ace06902ac54d190ebe362895b7cc85750.zip tk-b8b0c8ace06902ac54d190ebe362895b7cc85750.tar.gz tk-b8b0c8ace06902ac54d190ebe362895b7cc85750.tar.bz2 |
Scrolling is now working at an acceptable level; using Unix bindings to drive scrolling in Tk window, and just requiring Mac HITheme scrollbar to re-draw itself
Diffstat (limited to 'library')
-rw-r--r-- | library/scrlbar.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl index 1f8c7d2..688d40a 100644 --- a/library/scrlbar.tcl +++ b/library/scrlbar.tcl @@ -14,8 +14,8 @@ # The code below creates the default class bindings for scrollbars. #------------------------------------------------------------------------- -# Standard Motif bindings: -if {[tk windowingsystem] eq "x11"} { +# Standard Motif bindings: +if {[tk windowingsystem] eq "x11" || [tk windowingsystem] eq "aqua"} { bind Scrollbar <Enter> { if {$tk_strictMotif} { |