BorderDrawable density fixed to 1. It will be set through JS.

This commit is contained in:
Hristo Hristov
2016-12-16 17:59:53 +02:00
committed by vakrilov
parent 470164c358
commit a9aa5f45e1

View File

@@ -175,12 +175,12 @@ public class BorderDrawable extends ColorDrawable {
public BorderDrawable(float density){
super();
this.density = density;
this.density = 1f;
}
public BorderDrawable(float density, String id){
super();
this.density = density;
this.density = 1f;
this.id = id;
}