Enable the new custom icon set

This commit is contained in:
Roberto Rosario
2012-09-10 22:06:24 -04:00
parent 39b477064e
commit 0299a26ebd

View File

@@ -2,17 +2,19 @@ from __future__ import absolute_import
from django.utils.translation import ugettext_lazy as _
from icons.sets import fat_cow, famfamfam
from icons.sets import fat_cow, famfamfam, custom
SET_CHOICES = (
(fat_cow.ID, fat_cow.LABEL),
(famfamfam.ID, famfamfam.LABEL),
(custom.ID, custom.LABEL),
)
ICON_THEMES = {
fat_cow.ID: fat_cow,
famfamfam.ID: famfamfam,
custom.ID: custom,
}