diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-07-22 04:36:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-22 04:36:13 (GMT) |
commit | 616ecf18f3aacbd8d172e01673877b22fe946e54 (patch) | |
tree | 13d4435f21a2ae954bdaa859d354a37399e81c9e /Lib/idlelib/configdialog.py | |
parent | ff92ff53665b1606a17231972b48ad894459f761 (diff) | |
download | cpython-616ecf18f3aacbd8d172e01673877b22fe946e54.zip cpython-616ecf18f3aacbd8d172e01673877b22fe946e54.tar.gz cpython-616ecf18f3aacbd8d172e01673877b22fe946e54.tar.bz2 |
bpo-30981: IDLE: Augment one configdialog font page test (#2810)
Remove broken test of bold_toggle and test it along with its command, set_samples.
This has been incorporated into 3.6 backport PR-2796.
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 59822fc..c1db768 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -153,6 +153,14 @@ class ConfigDialog(Toplevel): def create_page_font_tab(self): """Return frame of widgets for Font/Tabs tab. + Enable users to provisionally change font face, size, or + boldness and to see the consequence of proposed choices. Each + action set 3 options in changes structuree and changes the + corresponding aspect of the font sample on this page and + highlight sample on highlight page. + + Enable users to change spaces entered for indent tabs. + Tk Variables: font_name: Font face. font_size: Font size. @@ -161,7 +169,7 @@ class ConfigDialog(Toplevel): space_num: Indentation width. Data Attribute: - edit_font: Font widget with default font name, size, and weight. + edit_font: Font with default font name, size, and weight. Methods: load_font_cfg: Set vars and fontlist. |