mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Fix #2992
Move a function call, such that data it depends on is initialized before.
This commit is contained in:
		
							parent
							
								
									b52e005346
								
							
						
					
					
						commit
						94985146ea
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -66,7 +66,6 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	struct wlr_output *wlr_output = output->wlr_output;
 | 
						struct wlr_output *wlr_output = output->wlr_output;
 | 
				
			||||||
	output->enabled = true;
 | 
						output->enabled = true;
 | 
				
			||||||
	apply_output_config(oc, output);
 | 
					 | 
				
			||||||
	list_add(root->outputs, output);
 | 
						list_add(root->outputs, output);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	output->lx = wlr_output->lx;
 | 
						output->lx = wlr_output->lx;
 | 
				
			||||||
| 
						 | 
					@ -98,6 +97,8 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	wl_signal_init(&output->events.destroy);
 | 
						wl_signal_init(&output->events.destroy);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						apply_output_config(oc, output);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	input_manager_configure_xcursor();
 | 
						input_manager_configure_xcursor();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wl_signal_add(&wlr_output->events.mode, &output->mode);
 | 
						wl_signal_add(&wlr_output->events.mode, &output->mode);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue