fix custom drawables in themes - fix #305

This commit is contained in:
Vadim Lopatin 2016-10-17 10:14:40 +03:00
parent b07d0aae9b
commit 738d70584e
1 changed files with 1 additions and 1 deletions

View File

@ -1020,7 +1020,7 @@ class Theme : Style {
override string customDrawableId(string id) const { override string customDrawableId(string id) const {
if (_customDrawables.hasKey(id)) if (_customDrawables.hasKey(id))
_customDrawables.drawableId(id); return _customDrawables.drawableId(id);
return null; return null;
} }