searchpanel: Set minimum search string size.

Having a single-byte search is not a good idea.
This commit is contained in:
Alastair Poole 2020-02-09 18:08:23 +00:00
parent 44b957d2e4
commit 78e0601856
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@ _edi_searchpanel_keypress_cb(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_O
edi_searchpanel_stop();
text_markup = elm_object_part_text_get(entry, NULL);
text = elm_entry_markup_to_utf8(text_markup);
if (text)
if (text && text[0] && text[1])
{
edi_searchpanel_find(text);
free(text);
elm_object_part_text_set(entry, NULL, "");
}
elm_object_part_text_set(entry, NULL, "");
}
}