1
0

Accepting request 175195 from GNOME:Apps

- Also rebrand svg icons, otherwise default icon is set to Ubuntu.

OBS-URL: https://build.opensuse.org/request/show/175195
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/faenza-icon-theme?expand=0&rev=6
This commit is contained in:
Stephan Kulow 2013-05-16 08:11:11 +00:00 committed by Git OBS Bridge
commit 411055e0d3
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
- Also rebrand svg icons, otherwise default icon is set to Ubuntu.
-------------------------------------------------------------------
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 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