Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2013-10-28 21:34:44 +0400
committerLluis Sanchez <lluis@xamarin.com>2013-10-28 21:34:44 +0400
commit61058215bedb29ae63be94106891a5d27fb08146 (patch)
tree43fe10615e00008d3e88623815fa08e8d921ba8d /Xwt.WPF
parentf6840cf0927a2ab5a8e61287af5ee07c13a9c43d (diff)
[WPF] Minor sizing fix for BoxBackend
Looks like after all an UpdateLayout call is required after arranging each child.
Diffstat (limited to 'Xwt.WPF')
-rw-r--r--Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs b/Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs
index 3f15e1b4..4f9005c8 100644
--- a/Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs
+++ b/Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs
@@ -129,7 +129,7 @@ namespace Xwt.WPFBackend
}
element.Arrange (r.ToWpfRect ());
- // element.UpdateLayout ();
+ element.UpdateLayout ();
}
}
}