summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
authorSeungkeun Lee <sngn.lee@samsung.com>2017-04-07 09:19:01 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:22 +0900
commite008b04e3551ca57690e10a09237984d3c892c26 (patch)
treef5b170c2007ab51d8b5ffad5ca5acba898169bfa /Xamarin.Forms.Platform.Tizen/Native
parentfc82caf4bdbe2f366e6c77b072b5eb59afab875e (diff)
downloadxamarin-forms-e008b04e3551ca57690e10a09237984d3c892c26.tar.gz
xamarin-forms-e008b04e3551ca57690e10a09237984d3c892c26.tar.bz2
xamarin-forms-e008b04e3551ca57690e10a09237984d3c892c26.zip
Disable Layout on Resize callback
- LayoutCallback already called when resized - Resize callback is called immediately invoked when size was changed and it cause redundancy layouting - LayoutCallback is invoked only one times in renderer loop if necessary. - if another side effect occur with this changes, need to analysis that problem reason again. Change-Id: Id28f5968a2e4997f817579b9909fb01b4c962191
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Box.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Box.cs b/Xamarin.Forms.Platform.Tizen/Native/Box.cs
index f22d27b5..9bd7bad9 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Box.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Box.cs
@@ -24,7 +24,6 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <param name="parent">The parent EvasObject.</param>
public Box(EvasObject parent) : base(parent)
{
- Resized += (sender, e) => { NotifyOnLayout(); };
SetLayoutCallback(() => { NotifyOnLayout(); });
}