]> O.S.I.I.S - jp/crow.git/commitdiff
code clean
authorjpbruyere <jp.bruyere@hotmail.com>
Tue, 19 Apr 2016 15:44:43 +0000 (17:44 +0200)
committerjpbruyere <jp.bruyere@hotmail.com>
Tue, 19 Apr 2016 15:44:43 +0000 (17:44 +0200)
src/GraphicObjects/GraphicObject.cs

index 7020cc3fdc6fda9cf888d5989f440bd5785ffceb..88bb388533570584f56feefb0735d5729147bf30 100644 (file)
@@ -75,6 +75,8 @@ namespace Crow
                Fill _background = Color.Transparent;
                Fill _foreground = Color.White;
                Font _font = "droid, 10";
+               Measure _width, _height;
+               int _left, _top;
                double _cornerRadius = 0;
                int _margin = 0;
                bool _focusable = false;
@@ -93,11 +95,6 @@ namespace Crow
 
                #region public fields
                /// <summary>
-               /// Original size and position 0=Stretched; -1=Fit
-               /// </summary>
-               Measure _width, _height;
-               int _left, _top;
-               /// <summary>
                /// Current size and position computed during layouting pass
                /// </summary>
                public Rectangle Slot = new Rectangle ();