mirror of
				https://codeberg.org/dwl/dwl.git
				synced 2025-11-03 09:01:45 -05:00 
			
		
		
		
	fix segfault if parent->mon is unset
This commit is contained in:
		
							parent
							
								
									7eee0a8229
								
							
						
					
					
						commit
						9d2eb8483b
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		
							
								
								
									
										3
									
								
								dwl.c
									
										
									
									
									
								
							
							
						
						
									
										3
									
								
								dwl.c
									
										
									
									
									
								
							| 
						 | 
					@ -1436,7 +1436,8 @@ mapnotify(struct wl_listener *listener, void *data)
 | 
				
			||||||
		/* Set the same monitor and tags than its parent */
 | 
							/* Set the same monitor and tags than its parent */
 | 
				
			||||||
		c->isfloating = 1;
 | 
							c->isfloating = 1;
 | 
				
			||||||
		wlr_scene_node_reparent(c->scene, layers[LyrFloat]);
 | 
							wlr_scene_node_reparent(c->scene, layers[LyrFloat]);
 | 
				
			||||||
		setmon(c, p->mon, p->tags);
 | 
							/* TODO recheck if !p->mon is possible with wlroots 0.16.0 */
 | 
				
			||||||
 | 
							setmon(c, p->mon ? p->mon : selmon, p->tags);
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		applyrules(c);
 | 
							applyrules(c);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue