Fix typo for the force/immediate option in xwayland_mode enum
This commit is contained in:
parent
1b396273bb
commit
b46c53957f
|
@ -427,7 +427,7 @@ enum alignment {
|
|||
enum xwayland_mode {
|
||||
XWAYLAND_MODE_DISABLED,
|
||||
XWAYLAND_MODE_LAZY,
|
||||
XWAYLAND_MODE_IMMEADIATE
|
||||
XWAYLAND_MODE_IMMEDIATE
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -13,7 +13,7 @@ struct cmd_results *cmd_xwayland(int argc, char **argv) {
|
|||
#ifdef HAVE_XWAYLAND
|
||||
enum xwayland_mode xwayland;
|
||||
if (strcmp(argv[0], "force") == 0) {
|
||||
xwayland = XWAYLAND_MODE_IMMEADIATE;
|
||||
xwayland = XWAYLAND_MODE_IMMEDIATE;
|
||||
} else if (parse_boolean(argv[0], true)) {
|
||||
xwayland = XWAYLAND_MODE_LAZY;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue