diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/view/CustomRatingBar.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/view/CustomRatingBar.java index 544f1346cc..d7cab5bbb4 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/view/CustomRatingBar.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/view/CustomRatingBar.java @@ -170,11 +170,11 @@ public class CustomRatingBar extends LinearLayout { Drawable drawable_fill_default = ContextCompat.getDrawable(context, R.drawable.icon_heart_choose); Drawable drawable_empty = mTypedArray.getDrawable(R.styleable.CustomRatingBar_elenmentEmpty); - Drawable drawable_harf = mTypedArray.getDrawable(R.styleable.CustomRatingBar_elenmentHarf); + Drawable drawable_half = mTypedArray.getDrawable(R.styleable.CustomRatingBar_elenmentHarf); Drawable drawable_fill = mTypedArray.getDrawable(R.styleable.CustomRatingBar_elenmentFill); elementEmptyDrawable = drawable_empty != null ? drawable_empty : drawable_empty_default; - elementFillDrawable = drawable_harf != null ? drawable_harf : drawable_fill_default; + elementFillDrawable = drawable_half != null ? drawable_half : drawable_fill_default; elementHarfDrawable = drawable_fill != null ? drawable_fill : drawable_harf_default; mClickable = mTypedArray.getBoolean(R.styleable.CustomRatingBar_clickable, false); mTypedArray.recycle();