common: rename load_background_image to load_image

This commit is contained in:
Manuel Stoeckl 2023-11-23 08:01:48 -05:00 committed by Simon Ser
parent 39b9c0d6ba
commit 439122e887
3 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ static cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(
}
#endif // HAVE_GDK_PIXBUF
cairo_surface_t *load_background_image(const char *path) {
cairo_surface_t *load_image(const char *path) {
cairo_surface_t *image;
#if HAVE_GDK_PIXBUF
GError *err = NULL;

View File

@ -2,6 +2,6 @@
#define _SWAY_BACKGROUND_IMAGE_H
#include <cairo.h>
cairo_surface_t *load_background_image(const char *path);
cairo_surface_t *load_image(const char *path);
#endif

View File

@ -431,7 +431,7 @@ static void reload_sni(struct swaybar_sni *sni, char *icon_theme,
list_free(icon_search_paths);
if (icon_path) {
cairo_surface_destroy(sni->icon);
sni->icon = load_background_image(icon_path);
sni->icon = load_image(icon_path);
free(icon_path);
return;
}