1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-03-31 17:25:40 -04:00

[Icon] Fix loading icons that are already in cache.

fixes: #860
This commit is contained in:
Dave Davenport 2018-10-05 11:01:48 +02:00
parent 114b2cf2fd
commit 11afb8e678
3 changed files with 3 additions and 2 deletions

View file

@ -777,7 +777,7 @@ static cairo_surface_t *_get_icon ( const Mode *sw, unsigned int selected_line,
return rofi_icon_fetcher_get ( dr->icon_fetch_uid );
}
dr->icon_fetch_uid = rofi_icon_fetcher_query ( dr->icon_name, height );
return NULL;
return rofi_icon_fetcher_get ( dr->icon_fetch_uid );
}
static char *drun_get_completion ( const Mode *sw, unsigned int index )

View file

@ -332,7 +332,7 @@ static cairo_surface_t *script_get_icon ( const Mode *sw, unsigned int selected_
return rofi_icon_fetcher_get ( dr->icon_fetch_uid );
}
dr->icon_fetch_uid = rofi_icon_fetcher_query ( dr->icon_name, height );
return NULL;
return rofi_icon_fetcher_get ( dr->icon_fetch_uid );
}
#include "mode-private.h"

View file

@ -919,6 +919,7 @@ static cairo_surface_t *_get_icon ( const Mode *sw, unsigned int selected_line,
return rofi_icon_fetcher_get ( c->icon_fetch_uid );
}
c->icon_fetch_uid = rofi_icon_fetcher_query ( c->class, size );
return rofi_icon_fetcher_get ( c->icon_fetch_uid );
}
return c->icon;
}