diff options
| author | A Frederick Christensen <dwl@ivories.org> | 2022-02-03 23:22:19 -0600 | 
|---|---|---|
| committer | A Frederick Christensen <dwl@ivories.org> | 2022-02-03 23:22:19 -0600 | 
| commit | 97881c88c7b0d7c549fd05f62c1b2b678563039f (patch) | |
| tree | 2375421cca14dbac9c4a1a0cbbafa86ed0e1a315 | |
| parent | 3300f6c9114885160706e1599801b5000de1dd31 (diff) | |
| parent | ed44bc0c9069e0b55a4765bca10a5ad87732f019 (diff) | |
Merge remote-tracking branch 'origin/output-layout-get-box-update' into chasing-wlroots
| -rw-r--r-- | dwl.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -864,7 +864,7 @@ createmon(struct wl_listener *listener, void *data)  	 * output (such as DPI, scale factor, manufacturer, etc).  	 */  	wlr_output_layout_add(output_layout, wlr_output, r->x, r->y); -	sgeom = *wlr_output_layout_get_box(output_layout, NULL); +	wlr_output_layout_get_box(output_layout, NULL, &sgeom);  	/* When adding monitors, the geometries of all monitors must be updated */  	wl_list_for_each(m, &mons, link) { @@ -2307,7 +2307,7 @@ updatemons(struct wl_listener *listener, void *data)  	struct wlr_output_configuration_v1 *config =  		wlr_output_configuration_v1_create();  	Monitor *m; -	sgeom = *wlr_output_layout_get_box(output_layout, NULL); +	wlr_output_layout_get_box(output_layout, NULL, &sgeom);  	wl_list_for_each(m, &mons, link) {  		struct wlr_output_configuration_head_v1 *config_head =  			wlr_output_configuration_head_v1_create(config, m->wlr_output); @@ -2316,7 +2316,8 @@ updatemons(struct wl_listener *listener, void *data)  		/* TODO: move focus if selmon is disabled */  		/* Get the effective monitor geometry to use for surfaces */ -		m->m = m->w = *wlr_output_layout_get_box(output_layout, m->wlr_output); +		wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->m)); +		wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->w));  		/* Calculate the effective monitor geometry to use for clients */  		arrangelayers(m);  		/* Don't move clients to the left output when plugging monitors */ | 
