[GTK] Fix NRE in SegmentedButton when there are no buttons

This commit is contained in:
Lluis Sanchez 2013-06-06 22:22:19 +02:00
Родитель abc278c0a5
Коммит 3d37ce6eb1
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -81,6 +81,9 @@ namespace Xwt.GtkBackend
protected override void OnSizeAllocated (Gdk.Rectangle allocation)
{
var children = Children;
if (children.Length == 0)
return;
int childHeight = (int)(allocation.Height - 2 * BorderWidth);
int childWidth = (allocation.Width - Spacing * (children.Length - 1)) / children.Length;
int x = (int)(allocation.X + BorderWidth);