Commit 557dce0c authored by Vincent Boisselle's avatar Vincent Boisselle Committed by Commit Bot

Correct the timeout for the feed header menu

The timeout is 50 seconds when it should be 5 seconds.

Bug: 1091374
Change-Id: I0af7ec8e42b2a659149037147f5c33633da0e3c3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2231296
Commit-Queue: Dmitry Titov <dimich@chromium.org>
Reviewed-by: default avatarTheresa  <twellington@chromium.org>
Cr-Commit-Position: refs/heads/master@{#775307}
parent 952ab8c1
...@@ -116,7 +116,7 @@ public class SectionHeaderView extends LinearLayout implements View.OnClickListe ...@@ -116,7 +116,7 @@ public class SectionHeaderView extends LinearLayout implements View.OnClickListe
.setShouldHighlight(true) .setShouldHighlight(true)
.setDismissOnTouch(false) .setDismissOnTouch(false)
.setInsetRect(new Rect(0, 0, 0, 0)) .setInsetRect(new Rect(0, 0, 0, 0))
.setAutoDismissTimeout(10 * 5000) .setAutoDismissTimeout(5 * 1000)
.build()); .build());
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment