diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-14 09:51:37 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-14 09:51:37 (GMT) |
commit | 1a263ad62f11709e16c41f2448421287cde21e27 (patch) | |
tree | 372113b5f0a3ea6f47a139c253720dc9697ef303 /Doc/library/tkinter.ttk.rst | |
parent | 580d60cef47124376cb1d287f830551a0fa10869 (diff) | |
download | cpython-1a263ad62f11709e16c41f2448421287cde21e27.zip cpython-1a263ad62f11709e16c41f2448421287cde21e27.tar.gz cpython-1a263ad62f11709e16c41f2448421287cde21e27.tar.bz2 |
#7057: fix several errors.
Diffstat (limited to 'Doc/library/tkinter.ttk.rst')
-rw-r--r-- | Doc/library/tkinter.ttk.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst index 72875f4..7bf39b3 100644 --- a/Doc/library/tkinter.ttk.rst +++ b/Doc/library/tkinter.ttk.rst @@ -116,12 +116,13 @@ All the :mod:`ttk` Widgets accepts the following options: | | for the parent widget. | +-----------+--------------------------------------------------------------+ | takefocus | Determines whether the window accepts the focus during | - | | keyboard traversal. 0, 1 or an empty is return. If 0 is | - | | returned, it means that the window should be skipped entirely| - | | during keyboard traversal. If 1, it means that the window | - | | should receive the input focus as long as it is viewable. And| - | | an empty string means that the traversal scripts make the | - | | decision about whether or not to focus on the window. | + | | keyboard traversal. 0, 1 or an empty string is returned. | + | | If 0 is returned, it means that the window should be skipped | + | | entirely during keyboard traversal. If 1, it means that the | + | | window should receive the input focus as long as it is | + | | viewable. And an empty string means that the traversal | + | | scripts make the decision about whether or not to focus | + | | on the window. | +-----------+--------------------------------------------------------------+ | style | May be used to specify a custom widget style. | +-----------+--------------------------------------------------------------+ |