mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 14:04:11 +01:00
Merge pull request #2794 from johnae/fix-opacity-crashing-bug
Check if there is a current container before setting its opacity
This commit is contained in:
commit
1c1fbd49db
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user