mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Merge pull request #2799 from ianyfan/commands
commands: when setting urgency, check container is not null
This commit is contained in:
		
						commit
						a03955f936
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -12,6 +12,9 @@ struct cmd_results *cmd_urgent(int argc, char **argv) {
 | 
			
		|||
		return error;
 | 
			
		||||
	}
 | 
			
		||||
	struct sway_container *container = config->handler_context.container;
 | 
			
		||||
	if (!container) {
 | 
			
		||||
		return cmd_results_new(CMD_FAILURE, "urgent", "No current container");
 | 
			
		||||
	}
 | 
			
		||||
	if (!container->view) {
 | 
			
		||||
		return cmd_results_new(CMD_INVALID, "urgent",
 | 
			
		||||
				"Only views can be urgent");
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue