Browse Source

Decorator doesn't need to be abstract.

pull/4/head
Steven Kirk 12 years ago
parent
commit
771bb4362a
  1. 2
      Perspex/Controls/Decorator.cs

2
Perspex/Controls/Decorator.cs

@ -11,7 +11,7 @@ namespace Perspex.Controls
using System.Linq;
using System.Reactive.Linq;
public abstract class Decorator : Control, IVisual
public class Decorator : Control, IVisual
{
public static readonly PerspexProperty<Control> ContentProperty =
PerspexProperty.Register<ContentControl, Control>("Content");

Loading…
Cancel
Save