Skip to content

Commit 267a033

Browse files
author
Atle Smelvær
committed
Adjusted test back to original
1 parent 7b16b51 commit 267a033

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rg.Plugins.Popup/Animations/ScaleAnimation.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,13 @@ public async override Task Appearing(View content, PopupPage page)
102102
public async override Task Disappearing(View content, PopupPage page)
103103
{
104104
var taskList = new List<Task>();
105+
106+
taskList.Add(base.Disappearing(content, page));
107+
105108
if (content != null)
106109
{
107110
UpdateDefaultProperties(content);
108-
taskList.Add(base.Disappearing(content, page));
111+
109112
var topOffset = GetTopOffset(content, page) * ScaleOut;
110113
var leftOffset = GetLeftOffset(content, page) * ScaleOut;
111114

0 commit comments

Comments
 (0)