aboutsummaryrefslogtreecommitdiff
path: root/input_field.c
diff options
context:
space:
mode:
Diffstat (limited to 'input_field.c')
-rw-r--r--input_field.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/input_field.c b/input_field.c
index c221e6f..d8c5c23 100644
--- a/input_field.c
+++ b/input_field.c
@@ -35,7 +35,7 @@ void refilter_items(client_state* state) {
float part = 0;
bool add = true;
array_for_all(char*, j, parts) {
- if (state->strstr(i->text, *j)) {
+ if (state->strstr2(i->text, *j)) {
part += strlen(*j);
}
else {
@@ -57,7 +57,7 @@ void refilter_items(client_state* state) {
}
else {
array_for_all(item_t, i, state->items) {
- if (state->strstr(i->text, input_buffer_string) != NULL) {
+ if (state->strstr2(i->text, input_buffer_string) != NULL) {
array_add(state->filtered_items, (item_display_t){ .item = i });
}
}
@@ -166,4 +166,3 @@ key_repeat_t execute_keypress(client_state* state, xkb_keysym_t keysym) {
return KEY_NO_REPEAT;
}
-