Browse Source
* Don't alter state in properties. The `IValueEntry.HasValue` and `ValueFrame.IsActive` properties could alter state, which meant that when inspecting objects with these properties in a debugger, the state got altered by observing it. Make them methods. * Deleted unused file. * Add failing test for #12381. * Use the index from the event in EvaluateIsActive. Break the rules in this case. Fixes #12381 --------- Co-authored-by: Max Katz <maxkatz6@outlook.com>release/11.0.6
committed by
Max Katz
10 changed files with 94 additions and 50 deletions
@ -1,17 +0,0 @@ |
|||
using System; |
|||
using Avalonia.Styling; |
|||
|
|||
namespace Avalonia.Base.UnitTests.Styling |
|||
{ |
|||
public static class TestSelectors |
|||
{ |
|||
public static Selector SubscribeCheck(this Selector selector) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
//return new Selector(
|
|||
// selector,
|
|||
// control => new SelectorMatch(((TestControlBase)control).SubscribeCheckObservable),
|
|||
// "");
|
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue