mirror of
https://github.com/python/cpython.git
synced 2025-08-09 11:29:45 +00:00
[3.12] gh-120104: IDLE: Fix padding in config and search dialogs (GH-120107) (#122741)
(cherry picked from commit 4b66b6b7d6
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
4766d1200f
commit
81bed0fe8a
3 changed files with 3 additions and 2 deletions
|
@ -111,7 +111,7 @@ class ConfigDialog(Toplevel):
|
|||
load_configs: Load pages except for extensions.
|
||||
activate_config_changes: Tell editors to reload.
|
||||
"""
|
||||
self.frame = frame = Frame(self, padding="5px")
|
||||
self.frame = frame = Frame(self, padding=5)
|
||||
self.frame.grid(sticky="nwes")
|
||||
self.note = note = Notebook(frame)
|
||||
self.extpage = ExtPage(note)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue