mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	criteria & scratchpad verify if show in another workspace (#3522)
check if scratchpad is show in another workspace
This commit is contained in:
		
							parent
							
								
									4f4424f66c
								
							
						
					
					
						commit
						5cb3d4769c
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -72,8 +72,10 @@ static void scratchpad_toggle_container(struct sway_container *con) {
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						struct sway_seat *seat = input_manager_current_seat();
 | 
				
			||||||
 | 
						struct sway_workspace *ws = seat_get_focused_workspace(seat);
 | 
				
			||||||
	// Check if it matches a currently visible scratchpad window and hide it.
 | 
						// Check if it matches a currently visible scratchpad window and hide it.
 | 
				
			||||||
	if (con->workspace) {
 | 
						if (con->workspace && ws == con->workspace) {
 | 
				
			||||||
		root_scratchpad_hide(con);
 | 
							root_scratchpad_hide(con);
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue