mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Merge pull request #1950 from RyanDwyer/fix-font-height-reload
Use reasonable default for font height
This commit is contained in:
		
						commit
						64bd4d5685
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -172,7 +172,7 @@ static void config_defaults(struct sway_config *config) {
 | 
				
			||||||
	config->default_layout = L_NONE;
 | 
						config->default_layout = L_NONE;
 | 
				
			||||||
	config->default_orientation = L_NONE;
 | 
						config->default_orientation = L_NONE;
 | 
				
			||||||
	if (!(config->font = strdup("monospace 10"))) goto cleanup;
 | 
						if (!(config->font = strdup("monospace 10"))) goto cleanup;
 | 
				
			||||||
	config->font_height = 0;
 | 
						config->font_height = 17; // height of monospace 10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// floating view
 | 
						// floating view
 | 
				
			||||||
	config->floating_maximum_width = 0;
 | 
						config->floating_maximum_width = 0;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue