diff --git a/src/core/binding.c b/src/core/binding.c index fd96ad7..4efb98f 100644 --- a/src/core/binding.c +++ b/src/core/binding.c @@ -175,7 +175,6 @@ bool binding_table_add_bind( if (!parse_key_sequence(key_sequence, &modifiers, &keysym)) return false; auto item = array_push(mode->items, mode->count, mode->capacity); - item->key_str = key_sequence; item->modifiers = modifiers; item->keysym = keysym; item->action = action; diff --git a/src/core/binding.h b/src/core/binding.h index ff4bb51..cfa185f 100644 --- a/src/core/binding.h +++ b/src/core/binding.h @@ -10,7 +10,6 @@ typedef struct binding_table_t binding_table_t; typedef struct key_binding_t { - const char *key_str; modifier_mask_t modifiers; keysym_t keysym; zdwm_action_t action;