Merge "AAPT: Use the right enum when checking for density configurations" into lmp-mr1-dev

This commit is contained in:
Adam Lesinski
2015-01-23 02:29:49 +00:00
committed by Android (Google) Code Review

View File

@@ -796,7 +796,7 @@ bool isSameExcept(const ResTable_config& a, const ResTable_config& b, int axisMa
}
bool isDensityOnly(const ResTable_config& config) {
if (config.density == ResTable_config::DENSITY_NONE) {
if (config.density == ResTable_config::DENSITY_DEFAULT) {
return false;
}