Browse Source

notify: fix path to VLC icon

As per ebbb05512f.
pull/68/head
Rémi Denis-Courmont 9 years ago
parent
commit
1f252f5433
  1. 4
      modules/notify/notify.c

4
modules/notify/notify.c

@ -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 );

Loading…
Cancel
Save