1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

notify: fix path to VLC icon

As per ebbb05512f.
This commit is contained in:
Rémi Denis-Courmont 2018-03-05 23:13:20 +02:00
parent f8c596db7a
commit 1f252f5433

View File

@ -233,8 +233,8 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
{
/* Load icon from share/ */
GError *p_error = NULL;
char *psz_pixbuf = config_GetSysPath(VLC_PKG_DATA_DIR,
"icons/48x48/"PACKAGE".png");
char *psz_pixbuf = config_GetSysPath(VLC_SYSDATA_DIR,
"icons/hicolor/48x48/"PACKAGE_NAME".png");
if (psz_pixbuf != NULL)
{
pix = gdk_pixbuf_new_from_file( psz_pixbuf, &p_error );