diff --git a/faenza-icon-theme.changes b/faenza-icon-theme.changes index 9b5b3f0..24e3ad5 100644 --- a/faenza-icon-theme.changes +++ b/faenza-icon-theme.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri May 10 09:45:06 UTC 2013 - rmilasan@suse.com + +- Rebrand also svg icons too, otherwise default icon is set to Ubuntu. + ------------------------------------------------------------------- Tue Feb 19 19:09:38 UTC 2013 - nmo.marques@gmail.com diff --git a/faenza-install b/faenza-install index 50aa3c0..4848e52 100644 --- a/faenza-install +++ b/faenza-install @@ -41,7 +41,7 @@ class Faenza(): for variant in variants: for root, dirs, files in os.walk(variant): for f in files: - if fnmatch(f, target + '.png'): + if fnmatch(f, target + '.png') or fnmatch(f, target + '.svg'): icons.append(root + '/' + f) return 0