1
0

Accepting request 174945 from home:rmilasan:branches:GNOME:Apps

- Rebrand also svg icons too, otherwise default icon is set to Ubuntu.

OBS-URL: https://build.opensuse.org/request/show/174945
OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/faenza-icon-theme?expand=0&rev=8
This commit is contained in:
Dominique Leuenberger 2013-05-12 18:48:04 +00:00 committed by Git OBS Bridge
parent 58e373b5bb
commit ecb2d91218
2 changed files with 6 additions and 1 deletions

View File

@ -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 Tue Feb 19 19:09:38 UTC 2013 - nmo.marques@gmail.com

View File

@ -41,7 +41,7 @@ class Faenza():
for variant in variants: for variant in variants:
for root, dirs, files in os.walk(variant): for root, dirs, files in os.walk(variant):
for f in files: for f in files:
if fnmatch(f, target + '.png'): if fnmatch(f, target + '.png') or fnmatch(f, target + '.svg'):
icons.append(root + '/' + f) icons.append(root + '/' + f)
return 0 return 0