mirror of
https://github.com/NickHu/sway
synced 2025-01-04 23:01:31 +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
1 changed files with 4 additions and 0 deletions
|
@ -21,6 +21,10 @@ struct cmd_results *cmd_opacity(int argc, char **argv) {
|
||||||
|
|
||||||
struct sway_container *con = config->handler_context.container;
|
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;
|
float opacity = 0.0f;
|
||||||
|
|
||||||
if (!parse_opacity(argv[0], &opacity)) {
|
if (!parse_opacity(argv[0], &opacity)) {
|
||||||
|
|
Loading…
Reference in a new issue