Skip to content

Commit a0b9107

Browse files
committed
fix subtitle visibility when reusing cached view
1 parent 41092c3 commit a0b9107

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ui/src/main/java/io/snabble/sdk/ui/cart/ShoppingCartView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,7 @@ public void bindTo(final int position) {
509509
if (product.getSubtitle() == null || product.getSubtitle().equals("")) {
510510
subtitle.setVisibility(View.GONE);
511511
} else {
512+
subtitle.setVisibility(View.VISIBLE);
512513
subtitle.setText(product.getSubtitle());
513514
}
514515

0 commit comments

Comments
 (0)