From 94ce5883768d102ee95932b9da2073991decad50 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 10 Apr 2022 11:22:59 -0500 Subject: [PATCH] 08.1376 Migration: Fixing profile previews problems caused by BlLazyElement deprecation. --- .../TweetsCollection.class/instance/gtTweetsFor..st | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st b/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st index 31f3051..7226c12 100644 --- a/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st +++ b/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st @@ -12,14 +12,5 @@ gtTweetsFor: aView c horizontal matchParent ]; padding: (BlInsets all: 10). self tweets do: [ :each | - imageContainer := BlLazyElement new - withGlamorousPreview; - aptitude: BrShadowAptitude new; - background: Color white; - margin: (BlInsets all: 10); - constraintsDo: [ :c | - c vertical exact: 145. - c horizontal matchParent ]; - elementBuilder: [ each asCardElement margin: (BlInsets all: 20) ]. - container addChild: imageContainer]. + container addChild: each asCardElement ]. container asScrollableElement ] \ No newline at end of file