diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-06-21 13:05:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-06-21 13:05:45 (GMT) |
commit | 6eac9c2f48c934ccb300208994845259d88e1ebf (patch) | |
tree | c3bd901d996e7d8e68c6d01cdc37e191297b2a4b /library | |
parent | 3b894ebd5728eb377932f6a0a6f7703ad70ab7cf (diff) | |
download | tk-6eac9c2f48c934ccb300208994845259d88e1ebf.zip tk-6eac9c2f48c934ccb300208994845259d88e1ebf.tar.gz tk-6eac9c2f48c934ccb300208994845259d88e1ebf.tar.bz2 |
Add ISSUE_TEMPLATE and PULL_REQUEST_TEMPLATE for github.
Change many url's from http:// to https://
Diffstat (limited to 'library')
-rw-r--r-- | library/demos/cscroll.tcl | 2 | ||||
-rw-r--r-- | library/icons.tcl | 2 | ||||
-rw-r--r-- | library/listbox.tcl | 2 | ||||
-rw-r--r-- | library/text.tcl | 2 | ||||
-rw-r--r-- | library/tk.tcl | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/library/demos/cscroll.tcl b/library/demos/cscroll.tcl index d210c7d..c88bfa9 100644 --- a/library/demos/cscroll.tcl +++ b/library/demos/cscroll.tcl @@ -114,7 +114,7 @@ if {[tk windowingsystem] eq "x11" && ![package vsatisfies [package provide Tk] 8 # Support for mousewheels on Linux/Unix commonly comes through mapping # the wheel to the extended buttons. If you have a mousewheel, find # Linux configuration info at: - # http://linuxreviews.org/howtos/xfree/mouse/ + # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X bind $c <Button-4> { if {!$tk_strictMotif} { %W yview scroll -5 units diff --git a/library/icons.tcl b/library/icons.tcl index e53a1bd..87af75a 100644 --- a/library/icons.tcl +++ b/library/icons.tcl @@ -4,7 +4,7 @@ # were provided by the Tango Desktop project which provides a # unified set of high quality icons licensed under the # Creative Commons Attribution Share-Alike license -# (http://creativecommons.org/licenses/by-sa/3.0/) +# (https://creativecommons.org/licenses/by-sa/3.0/) # # See http://tango.freedesktop.org/Tango_Desktop_Project # diff --git a/library/listbox.tcl b/library/listbox.tcl index 9e0da6c..44abfb9 100644 --- a/library/listbox.tcl +++ b/library/listbox.tcl @@ -214,7 +214,7 @@ if {[tk windowingsystem] eq "x11"} { # Support for mousewheels on Linux/Unix commonly comes through mapping # the wheel to the extended buttons. If you have a mousewheel, find # Linux configuration info at: - # http://linuxreviews.org/howtos/xfree/mouse/ + # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X bind Listbox <4> { if {!$tk_strictMotif} { %W yview scroll -5 units diff --git a/library/text.tcl b/library/text.tcl index ec8f3d3..d1f9b86 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -499,7 +499,7 @@ if {[tk windowingsystem] eq "x11"} { # Support for mousewheels on Linux/Unix commonly comes through mapping # the wheel to the extended buttons. If you have a mousewheel, find # Linux configuration info at: - # http://linuxreviews.org/howtos/xfree/mouse/ + # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X bind Text <4> { if {!$tk_strictMotif} { %W yview scroll -50 pixels diff --git a/library/tk.tcl b/library/tk.tcl index 0715489..be934c1 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -460,7 +460,7 @@ switch -exact -- [tk windowingsystem] { event add <<ContextMenu>> <Button-2> # Official bindings - # See http://support.apple.com/kb/HT1343 + # See https://support.apple.com/en-us/HT201236 event add <<SelectAll>> <Command-Key-a> event add <<Undo>> <Command-Key-z> <Command-Lock-Key-Z> event add <<Redo>> <Shift-Command-Key-z> <Shift-Command-Lock-Key-z> |