diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-03-16 11:31:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 11:31:19 (GMT) |
commit | c61cb507c10c5b597928284e087a9a384ab267d0 (patch) | |
tree | 3f0860771658c9b8e38f49a2c8de342655a9fcc2 /Misc | |
parent | 1069a462f611f0b70b6eec0bba603d618a0378f3 (diff) | |
download | cpython-c61cb507c10c5b597928284e087a9a384ab267d0.zip cpython-c61cb507c10c5b597928284e087a9a384ab267d0.tar.gz cpython-c61cb507c10c5b597928284e087a9a384ab267d0.tar.bz2 |
gh-116484: Fix collisions between Checkbutton and ttk.Checkbutton default names (GH-116495)
Change automatically generated tkinter.Checkbutton widget names to
avoid collisions with automatically generated tkinter.ttk.Checkbutton
widget names within the same parent widget.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-03-08-11-31-49.gh-issue-116484.VMAsU7.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-03-08-11-31-49.gh-issue-116484.VMAsU7.rst b/Misc/NEWS.d/next/Library/2024-03-08-11-31-49.gh-issue-116484.VMAsU7.rst new file mode 100644 index 0000000..265c381 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-03-08-11-31-49.gh-issue-116484.VMAsU7.rst @@ -0,0 +1,3 @@ +Change automatically generated :class:`tkinter.Checkbutton` widget names to +avoid collisions with automatically generated +:class:`tkinter.ttk.Checkbutton` widget names within the same parent widget. |