'everything' dont sort action by last used, was a try..

SVN revision: 48195
This commit is contained in:
Hannes Janetzek 2010-04-21 01:53:30 +00:00
parent 2a1201bbdb
commit 1b4a60ff87
2 changed files with 6 additions and 6 deletions

View File

@ -687,7 +687,7 @@ _fetch(Evry_Plugin *plugin, const char *input)
evry_history_item_usage_set(evry_hist->subjects, it, input, NULL);
}
if (!input)
if (!input && plugin->type != type_action)
{
EINA_LIST_FOREACH(e_exehist_list_get(), l, file)
{

View File

@ -298,11 +298,11 @@ evry_history_item_usage_set(Eina_Hash *hist, Evry_Item *it, const char *input, c
if (ctxt != hi->context)
continue;
if (it->plugin->type == type_action)
{
if (hi->last_used > it->usage)
it->usage = hi->last_used;
}
/* if (it->plugin->type == type_action)
* {
* if (hi->last_used > it->usage)
* it->usage = hi->last_used;
* } */
if (evry_conf->history_sort_mode == 0)
{