Check if there is a current container before setting it's opacity

This commit is contained in:
John Axel Eriksson 2018-10-08 15:09:25 +02:00
parent 6cb0e58c6d
commit 08139daaa4
No known key found for this signature in database
GPG key ID: 04ED6F42C62F42E9

View file

@ -21,6 +21,10 @@ struct cmd_results *cmd_opacity(int argc, char **argv) {
struct sway_container *con = config->handler_context.container;
if (con == NULL) {
return cmd_results_new(CMD_FAILURE, "opacity", "No current container");
}
float opacity = 0.0f;
if (!parse_opacity(argv[0], &opacity)) {