Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-120104: IDLE: Fix padding in config and search dialogs
  • Loading branch information
serhiy-storchaka committed Jun 5, 2024
commit 4f6e57c9f0b256155afd7a4d96cc8ecea75e3fb1
2 changes: 1 addition & 1 deletion Lib/idlelib/configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def create_widgets(self):
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)
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/searchbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def create_widgets(self):
top.wm_iconname(self.icon)
_setup_dialog(top)
self.top = top
self.frame = Frame(top, padding="5px")
self.frame = Frame(top, padding=5)
self.frame.grid(sticky="nwes")
top.grid_columnconfigure(0, weight=100)
top.grid_rowconfigure(0, weight=100)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix padding in config and search dialog windows in IDLE.