From d6cb86e4c084e2103551d0a735f135714106ed6f Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 27 Jun 2019 09:27:50 -0700 Subject: [PATCH] Update layout-plugin.md (#473) Summary: Fix https://github.com/facebook/flipper/issues/472 Pull Request resolved: https://github.com/facebook/flipper/pull/473 Reviewed By: jknoxville Differential Revision: D16030793 Pulled By: passy fbshipit-source-id: 52d53be3ca0a4932e4c762e9906bc4576dd8147d --- docs/setup/layout-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/layout-plugin.md b/docs/setup/layout-plugin.md index fc8b3ea2a..c804ae30f 100644 --- a/docs/setup/layout-plugin.md +++ b/docs/setup/layout-plugin.md @@ -60,7 +60,7 @@ The issue is that if you have some view that occupies big part of the screen but Add the following tag to your view to skip it from Flipper's view picker. The view will still be shown in the layout hierarchy, but it will not be selected while using the view picker. ```java -view.setTag("flipper_skip_view_traversal", true); +view.setTag(R.id.flipper_skip_view_traversal, true); ```