mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 06:24:20 +01:00
commands: when setting urgency, check container is not null
This commit is contained in:
parent
16e727a654
commit
efb123899f
@ -12,6 +12,9 @@ struct cmd_results *cmd_urgent(int argc, char **argv) {
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
struct sway_container *container = config->handler_context.container;
|
struct sway_container *container = config->handler_context.container;
|
||||||
|
if (!container) {
|
||||||
|
return cmd_results_new(CMD_FAILURE, "urgent", "No current container");
|
||||||
|
}
|
||||||
if (!container->view) {
|
if (!container->view) {
|
||||||
return cmd_results_new(CMD_INVALID, "urgent",
|
return cmd_results_new(CMD_INVALID, "urgent",
|
||||||
"Only views can be urgent");
|
"Only views can be urgent");
|
||||||
|
Loading…
Reference in New Issue
Block a user