diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-03-30 10:43:55 -0400 | 
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2018-03-30 10:43:55 -0400 | 
| commit | 69eb021767d8cf57b08699c7e330fe8c52ca2764 (patch) | |
| tree | c4160dfb51ece94ea4858fd86a097b881405f4b9 /sway/tree | |
| parent | 2d460502812093b47f43295cf21636198e44edbb (diff) | |
| download | sway-69eb021767d8cf57b08699c7e330fe8c52ca2764.tar.xz | |
Add default_orientation command
Diffstat (limited to 'sway/tree')
| -rw-r--r-- | sway/tree/layout.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/sway/tree/layout.c b/sway/tree/layout.c index dc0ee5b4..c7cf16e6 100644 --- a/sway/tree/layout.c +++ b/sway/tree/layout.c @@ -123,12 +123,11 @@ struct sway_container *container_remove_child(struct sway_container *child) {  enum sway_container_layout container_get_default_layout(  		struct sway_container *output) { -	/* TODO WLR  	if (config->default_layout != L_NONE) { -		//return config->default_layout; +		return config->default_layout;  	} else if (config->default_orientation != L_NONE) {  		return config->default_orientation; -	} else */if (output->width >= output->height) { +	} else if (output->width >= output->height) {  		return L_HORIZ;  	} else {  		return L_VERT; | 
