diff options
author | Mark Roseman <mark@markroseman.com> | 2021-06-10 19:13:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 19:13:55 (GMT) |
commit | 42d5a4fc3b35e45cdd237d56a04e98894d0a31f5 (patch) | |
tree | ca275169b4bc471dd11a0d8589b8631d41d48422 /Misc/NEWS.d/next/IDLE | |
parent | f82262b186c4aa944d2ab0a5468724dfca2ecc3d (diff) | |
download | cpython-42d5a4fc3b35e45cdd237d56a04e98894d0a31f5.zip cpython-42d5a4fc3b35e45cdd237d56a04e98894d0a31f5.tar.gz cpython-42d5a4fc3b35e45cdd237d56a04e98894d0a31f5.tar.bz2 |
bpo-33962: Use ttk spinbox for IDLE indent space config (GH-22954)
If ttk.Spinbox is not available (Tk < 8.5.9) use readonly ttk.Combobox.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc/NEWS.d/next/IDLE')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2021-06-10-00-50-02.bpo-33962.ikAUNg.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2021-06-10-00-50-02.bpo-33962.ikAUNg.rst b/Misc/NEWS.d/next/IDLE/2021-06-10-00-50-02.bpo-33962.ikAUNg.rst new file mode 100644 index 0000000..b15fa8f --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2021-06-10-00-50-02.bpo-33962.ikAUNg.rst @@ -0,0 +1,2 @@ +Move the indent space setting from the Font tab to the new Windows tab. +Patch by Mark Roseman and Terry Jan Reedy. |