mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	gh-120104: IDLE: Fix padding in config and search dialogs (#120107)
This commit is contained in:
		
							parent
							
								
									4c31791848
								
							
						
					
					
						commit
						4b66b6b7d6
					
				
					 3 changed files with 3 additions and 2 deletions
				
			
		|  | @ -111,7 +111,7 @@ def create_widgets(self): | ||||||
|             load_configs: Load pages except for extensions. |             load_configs: Load pages except for extensions. | ||||||
|             activate_config_changes: Tell editors to reload. |             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.frame.grid(sticky="nwes") | ||||||
|         self.note = note = Notebook(frame) |         self.note = note = Notebook(frame) | ||||||
|         self.extpage = ExtPage(note) |         self.extpage = ExtPage(note) | ||||||
|  |  | ||||||
|  | @ -86,7 +86,7 @@ def create_widgets(self): | ||||||
|         top.wm_iconname(self.icon) |         top.wm_iconname(self.icon) | ||||||
|         _setup_dialog(top) |         _setup_dialog(top) | ||||||
|         self.top = top |         self.top = top | ||||||
|         self.frame = Frame(top, padding="5px") |         self.frame = Frame(top, padding=5) | ||||||
|         self.frame.grid(sticky="nwes") |         self.frame.grid(sticky="nwes") | ||||||
|         top.grid_columnconfigure(0, weight=100) |         top.grid_columnconfigure(0, weight=100) | ||||||
|         top.grid_rowconfigure(0, weight=100) |         top.grid_rowconfigure(0, weight=100) | ||||||
|  |  | ||||||
|  | @ -0,0 +1 @@ | ||||||
|  | Fix padding in config and search dialog windows in IDLE. | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Serhiy Storchaka
						Serhiy Storchaka