diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:45:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:45:25 (GMT) |
commit | 0424eaf7533b0f386f6038dbb99f89e30fbbff76 (patch) | |
tree | 8319fe88ab1424714e8346aba8885075ed39b77a /Doc/library/tkinter.ttk.rst | |
parent | 06171bd52a02173910d7ab8082850bbed0db1410 (diff) | |
download | cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.zip cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.gz cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.bz2 |
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
Diffstat (limited to 'Doc/library/tkinter.ttk.rst')
-rw-r--r-- | Doc/library/tkinter.ttk.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst index b0eefcb..ab8a9a9 100644 --- a/Doc/library/tkinter.ttk.rst +++ b/Doc/library/tkinter.ttk.rst @@ -554,9 +554,9 @@ ttk.Notebook This will extend the bindings for the toplevel window containing the notebook as follows: - * Control-Tab: selects the tab following the currently selected one. - * Shift-Control-Tab: selects the tab preceding the currently selected one. - * Alt-K: where K is the mnemonic (underlined) character of any tab, will + * :kbd:`Control-Tab`: selects the tab following the currently selected one. + * :kbd:`Shift-Control-Tab`: selects the tab preceding the currently selected one. + * :kbd:`Alt-K`: where *K* is the mnemonic (underlined) character of any tab, will select that tab. Multiple notebooks in a single toplevel may be enabled for traversal, |