Skip to content

Commit

Permalink
fix(android): re-create list upon visibility change (#13124)
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Quick <jquick@axway.com>
  • Loading branch information
garymathews and jquick-axway committed Oct 20, 2021
1 parent f3c4057 commit 18b4eaf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -472,7 +472,7 @@ private void processProperty(String name, Object value)
// Set list sections.
setSections((Object[]) value);

} else if (name.equals(TiC.PROPERTY_EDITING)) {
} else if (name.equals(TiC.PROPERTY_EDITING) || name.equals(TiC.PROPERTY_VISIBLE)) {
final TiViewProxy parent = getParent();

if (parent != null) {
Expand Down

0 comments on commit 18b4eaf

Please sign in to comment.