Disallow duplicate active changes.

This commit is contained in:
Dean Herbert 2017-03-16 21:33:08 +09:00
parent 84b080a060
commit 2cf6ed423e
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ public override bool Active
get { return base.Active; }
set
{
if (Active == value) return;
if (value)
fadeActive();
else