From 5a228265ff58486e1901078e5335e3d732802e03 Mon Sep 17 00:00:00 2001 From: Michael Mairegger Date: Mon, 21 Mar 2016 10:23:12 +0100 Subject: [PATCH] Remove BindsTwoWayByDefault from IsActiveProperty from ProgressRing --- MahApps.Metro/Controls/ProgressRing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MahApps.Metro/Controls/ProgressRing.cs b/MahApps.Metro/Controls/ProgressRing.cs index ade1a7fa95..162611f7b9 100644 --- a/MahApps.Metro/Controls/ProgressRing.cs +++ b/MahApps.Metro/Controls/ProgressRing.cs @@ -15,7 +15,7 @@ public class ProgressRing : Control { public static readonly DependencyProperty BindableWidthProperty = DependencyProperty.Register("BindableWidth", typeof(double), typeof(ProgressRing), new PropertyMetadata(default(double), BindableWidthCallback)); - public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("IsActive", typeof(bool), typeof(ProgressRing), new FrameworkPropertyMetadata(true, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, IsActiveChanged)); + public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("IsActive", typeof(bool), typeof(ProgressRing), new PropertyMetadata(true, IsActiveChanged)); public static readonly DependencyProperty IsLargeProperty = DependencyProperty.Register("IsLarge", typeof(bool), typeof(ProgressRing), new PropertyMetadata(true, IsLargeChangedCallback));