Skip to content

Commit

Permalink
Merge branch 'next' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
giomatfois62 committed Mar 3, 2024
2 parents dcf7505 + 3d29715 commit f5227cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/rofi-icon-fetcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@ static gboolean rofi_icon_fetcher_create_thumbnail(const gchar *mime_type,
return thumbnail_created;
}

static void rofi_icon_fetch_thread_pool_entry_remove(gpointer data) {
IconFetcherNameEntry *entry = (IconFetcherNameEntry *)data;
// Mark it in a way it should be re-fetched on next query?
}

static void rofi_icon_fetch_entry_free(gpointer data) {
IconFetcherNameEntry *entry = (IconFetcherNameEntry *)data;

Expand Down Expand Up @@ -765,7 +770,7 @@ uint32_t rofi_icon_fetcher_query_advanced(const char *name, const int wsize,

// Push into fetching queue.
sentry->state.callback = rofi_icon_fetcher_worker;
sentry->state.free = rofi_icon_fetch_entry_free;
sentry->state.free = rofi_icon_fetch_thread_pool_entry_remove;
sentry->state.priority = G_PRIORITY_LOW;
g_thread_pool_push(tpool, sentry, NULL);

Expand Down

0 comments on commit f5227cc

Please sign in to comment.