From 275271ddfebe1a6eebaa688574f9c7f67c2a3ee8 Mon Sep 17 00:00:00 2001 From: Moritz Post Date: Wed, 29 Jul 2020 15:23:20 +0200 Subject: [PATCH] Update spacing in screenshots.js With the update ActivityIndicator in the Android client, the space given to the Widget was to small. --- snippets/screenshots.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/screenshots.js b/snippets/screenshots.js index 43b11dab7..3b9ee04eb 100644 --- a/snippets/screenshots.js +++ b/snippets/screenshots.js @@ -150,7 +150,7 @@ function actionSnippet(parent) { } function activityIndicatorSnippet(parent) { - dimen(parent, android(72, 52), android(72, 52)); + dimen(parent, android(96, 52), android(96, 52)); new ActivityIndicator({left: 16, right: 16, top: 16, bottom: 16}).appendTo(parent); return {captureDelay: 2100}; }