Bug 1063831 - Fix doorhanger divider color for Dark themes r=margaret

This commit is contained in:
Mark Finkle 2014-11-11 15:03:57 -05:00
Родитель 33accc61e1
Коммит 8fc5df7079
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -129,6 +129,9 @@ public class DoorHanger extends LinearLayout {
// Set a dark background, and use a smaller text size for dark-themed DoorHangers.
setBackgroundColor(mResources.getColor(R.color.doorhanger_background_dark));
mTextView.setTextAppearance(getContext(), R.style.TextAppearance_Widget_DoorHanger_Small);
// Set the inter-doorhanger divider color
mDivider.setBackgroundColor(mDividerColor);
}
}