Small improvement

pull/163/head
M66B 6 years ago
parent 8d760b2acd
commit c6ff0f3149

@ -101,7 +101,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> {
view.setActivated(!rule.enabled); view.setActivated(!rule.enabled);
tvName.setText(rule.name); tvName.setText(rule.name);
tvOrder.setText(Integer.toString(rule.order)); tvOrder.setText(Integer.toString(rule.order));
ivStop.setVisibility(rule.stop ? View.VISIBLE : View.INVISIBLE); ivStop.setAlpha(rule.stop ? 1.0f : Helper.LOW_LIGHT);
try { try {
List<String> condition = new ArrayList<>(); List<String> condition = new ArrayList<>();

Loading…
Cancel
Save