Browse Source

Missed a nit.

Steven Kirk 8 years ago
parent
commit
d4a967d062
1 changed files with 7 additions and 7 deletions
  1. 7 7
      src/Gtk/Avalonia.Gtk/WindowImplBase.cs

+ 7 - 7
src/Gtk/Avalonia.Gtk/WindowImplBase.cs

@@ -125,6 +125,13 @@ namespace Avalonia.Gtk
 
         public Action<double> ScalingChanged { get; set; }
 
+        public IEnumerable<object> Surfaces => new object[]
+        {
+            Handle,
+            new Func<Gdk.Drawable>(() => CurrentDrawable),
+            _framebuffer
+        };
+
         public IPopupImpl CreatePopup()
         {
             return new PopupImpl();
@@ -316,12 +323,5 @@ namespace Avalonia.Gtk
             _window.Dispose();
             _window = null;
         }
-
-        public IEnumerable<object> Surfaces => new object[]
-        {
-            Handle, 
-            new Func<Gdk.Drawable>(() => CurrentDrawable),
-            _framebuffer
-        };
     }
 }