From 18e481d2cf8dde7f5ffff78a81799a767b76654b Mon Sep 17 00:00:00 2001 From: jpbruyere Date: Mon, 14 Sep 2015 23:17:12 +0200 Subject: [PATCH] debug --- src/GraphicObjects/Group.cs | 2 +- src/GraphicObjects/GroupBox.cs | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/GraphicObjects/Group.cs b/src/GraphicObjects/Group.cs index 87a9ee5c..f58fdf35 100644 --- a/src/GraphicObjects/Group.cs +++ b/src/GraphicObjects/Group.cs @@ -205,7 +205,7 @@ namespace go foreach (GraphicObject c in Children.Where(ch=>ch.Visible)) { Rectangles childClip = clip.intersectingRects (ContextCoordinates(c.Slot)); if (!c.DrawingIsValid || childClip.count > 0) - c.Paint (ref gr,childClip);//, localClip); + c.Paint (ref gr, childClip);//, localClip); } gr.Dispose (); diff --git a/src/GraphicObjects/GroupBox.cs b/src/GraphicObjects/GroupBox.cs index 0ad074e5..a9c3cc1c 100644 --- a/src/GraphicObjects/GroupBox.cs +++ b/src/GraphicObjects/GroupBox.cs @@ -33,14 +33,10 @@ namespace go set { _title = value; + NotifyValueChanged ("Text", _title); registerForGraphicUpdate(); } } - [XmlAttributeAttribute()][DefaultValue("droid,12")] - public Font Font { - get { return _font; } - set { _font = value; } - } #endregion Size titleSize { -- 2.47.3