mirror of
https://github.com/swaywm/sway.git
synced 2024-12-30 17:06:40 +01:00
cmd_mode: make modes case sensitive
This mirrors a change in i3 4.17 that makes binding modes case sensitive
This commit is contained in:
parent
a8a239e2f1
commit
f59b665792
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
#define _POSIX_C_SOURCE 200809L
|
#define _POSIX_C_SOURCE 200809L
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <strings.h>
|
|
||||||
#include "sway/commands.h"
|
#include "sway/commands.h"
|
||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
#include "sway/ipc-server.h"
|
#include "sway/ipc-server.h"
|
||||||
|
@ -44,7 +43,7 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
|
||||||
// Find mode
|
// Find mode
|
||||||
for (int i = 0; i < config->modes->length; ++i) {
|
for (int i = 0; i < config->modes->length; ++i) {
|
||||||
struct sway_mode *test = config->modes->items[i];
|
struct sway_mode *test = config->modes->items[i];
|
||||||
if (strcasecmp(test->name, mode_name) == 0) {
|
if (strcmp(test->name, mode_name) == 0) {
|
||||||
mode = test;
|
mode = test;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue