diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-18 20:42:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-18 20:42:57 (GMT) |
commit | 452f3387dfdfe45cb1fc59b28657e5111a2778d8 (patch) | |
tree | 2963a8cef29c683ccc7d3ef33fc5ea2880230d88 /library/ttk/cursors.tcl | |
parent | c0c401e9d4e7565e3d5b2adda77fe939fd766ee6 (diff) | |
parent | ef0195454b1d958bcad88274c0246d0ac81b781c (diff) | |
download | tk-452f3387dfdfe45cb1fc59b28657e5111a2778d8.zip tk-452f3387dfdfe45cb1fc59b28657e5111a2778d8.tar.gz tk-452f3387dfdfe45cb1fc59b28657e5111a2778d8.tar.bz2 |
Merge 8.6. Also add <6> and <7> bindings for X11, where appropriate
Diffstat (limited to 'library/ttk/cursors.tcl')
-rw-r--r-- | library/ttk/cursors.tcl | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/library/ttk/cursors.tcl b/library/ttk/cursors.tcl index 75f7791..852f01c 100644 --- a/library/ttk/cursors.tcl +++ b/library/ttk/cursors.tcl @@ -99,23 +99,20 @@ namespace eval ttk { } "aqua" { - if {[package vsatisfies [package provide Tk] 8.5]} { - # appeared 2007-04-23, Tk 8.5a6 - array set Cursors { - standard arrow - text ibeam - link pointinghand - crosshair crosshair - busy watch - forbidden notallowed - - hresize resizeleftright - vresize resizeupdown - nresize resizeup - sresize resizedown - wresize resizeleft - eresize resizeright - } + array set Cursors { + standard arrow + text ibeam + link pointinghand + crosshair crosshair + busy watch + forbidden notallowed + + hresize resizeleftright + vresize resizeupdown + nresize resizeup + sresize resizedown + wresize resizeleft + eresize resizeright } } } |